{% capture site_tags %}{% for tag in site.tags %}{{ tag | first }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %} {% assign sortedTags = site_tags | split:',' | sort %} {% for tag in sortedTags %} {{ tag }}{% unless forloop.last %} {% endunless %} {% endfor %}
{% for tag in sortedTags %}

{{ tag }}

    {% for post in site.tags[tag] %}
  • {{ post.title }}
  • {% endfor %}

Return to top ↑

{% endfor %}