Skip to content

Latest commit

 

History

History
33 lines (29 loc) · 1.32 KB

tag.md

File metadata and controls

33 lines (29 loc) · 1.32 KB
layout title permalink description
page
Tags
/tag/
An archive of posts sorted by tag.
    {% capture site_tags %}{% for tag in site.tags %}{{ tag | first }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}

    {% assign tag_words = site_tags | split:',' | sort %}

{% for item in (0..site.tags.size) %}{% unless forloop.last %} {% capture this_word %}{{ tag_words[item] | strip_newlines }}{% endcapture %}

{{ this_word }}

    {% for post in site.tags[this_word] %}{% if post.title != null %}
  • {{ post.date | date: "%B %d, %Y" }} » {% if post.category == "speaking" %} {% endif %}{{ post.title }}
  • {% endif %}{% endfor %}
{% endunless %}{% endfor %}