Skip to content

Latest commit

 

History

History
33 lines (28 loc) · 1.42 KB

File metadata and controls

33 lines (28 loc) · 1.42 KB
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 %}

{{ this_word }}

    {% for post in site.categories[this_word] %} {% if post.title != null %}
  • {{ post.title }}{{ post.date | date: "%F" }}
  • {% endif %}{% endfor %}
{% endunless %}{% endfor %}