Skip to content

Latest commit

 

History

History
39 lines (35 loc) · 1.23 KB

categories.md

File metadata and controls

39 lines (35 loc) · 1.23 KB
layout title permalink tags description
pageminimal
Category Index
/categories/index.html
Categories
An archive of posts sorted by categories.

{% assign categories = site.categories | sort | hash_filter %}

{% for tag in categories %}

{{ tag[0] }}

    {% 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 %}
{% endfor %}