--- layout: categories permalink: /categories/ title: Categories layout: default search_exclude: true ---

Categories

Find content easily

{% if site.categories.size > 0 %} {%- assign date_format = site.struggle.date_format | default: "%b %-d, %Y" -%} {% assign categories = "" | split:"" %} {% for c in site.categories %} {% assign categories = categories | push: c[0] %} {% endfor %} {% assign categories = categories | sort_natural %}
{% for category in categories %}

{% for post in site.categories[category] %} {% if post.hide != true %} {% endif %} {% endfor %}
{{ post.date | date: date_format }} {{post.title}}
{% endfor %}
{% endif %}