| layout | navpage-top |
|---|---|
| title | Categories |
{% capture site_cats %}{% for cat in site.categories %}{{ cat | first }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
{% assign cat_words = site_cats | split:',' | sort %}
{% for cat in cat_words) %}
{% if cat == "projects" %} {% continue %} {% endif %}
{{ cat }}{{ site.categories[cat] | size }}
{% endfor %}
{% for item in (0..site.categories.size) %}{% unless forloop.last %} {% capture this_word %}{{ cat_words[item] | strip_newlines }}{% endcapture %} {% if this_word == "projects" %} {% continue %} {% endif %}
-
{% for post in site.categories[this_word] %}
{% if post.title != null %}
- {{ post.title }} – {{ post.date | date: "%F" }} {% endif %}{% endfor %}