Skip to content

Latest commit

 

History

History
32 lines (29 loc) · 735 Bytes

tags.md

File metadata and controls

32 lines (29 loc) · 735 Bytes
layout title permalink content-type
post
By Tags
/tags/
eg
<style> .category-content a { text-decoration: none; color: #4183c4; } .category-content a:hover { text-decoration: underline; color: #4183c4; } </style> {% assign tags = site.notes | map: 'tags' | join: ' ' | split: ' ' | uniq %} {% for tag in tags %}

{{ tag | captalize }}

{%- for note in site.notes -%} {%- if note.tags contains tag -%}
  • {{ note.title }}
  • {%- endif -%} {%- endfor -%} {%- endfor -%}