layout | title | permalink | tags | description | |
---|---|---|---|---|---|
pageminimal |
Category Index |
/categories/index.html |
|
An archive of posts sorted by categories. |
{% assign categories = site.categories | sort | hash_filter %}
-
{% if categories.first[0] == null %}
{% for tag in categories %}
- {{ tag}} {{ site.tags[tag].size }} {% endfor %} {% else %} {% for tag in categories %}
- {{ tag[0]}} {{ tag[1].size }} {% endfor %} {% endif %}
{% for tag in categories %}
-
{% assign pages_list = tag[1] %}
{% for post in pages_list %}
{% if post.title != null %}
{% if group == null or group == post.group %}
- {{ post.title }}{{ post.date | date: "%B %d, %Y" }} {% endif %} {% endif %} {% endfor %} {% assign pages_list = nil %} {% assign group = nil %}