--- layout: categories permalink: /categories/ title: Tags search_exclude: true --- {% if site.categories.size > 0 %}

Contents

{% assign categories = "" | split:"" %} {% for c in site.categories %} {% assign categories = categories | push: c[0] %} {% endfor %} {% assign categories = categories | sort_natural %} {% for category in categories %}

{{ category }}

{% for post in site.categories[category] %} {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}

{{post.title}} • {{ post.date | date: date_format }}

{% endfor %} {% endfor %} {% endif %}