Skip to content

Latest commit

 

History

History
47 lines (43 loc) · 1.62 KB

categories.md

File metadata and controls

47 lines (43 loc) · 1.62 KB
layout title
page
Categories
{% for tag in site.categories %}

{{ tag[0] | capitalize }}

    {% assign pages_list = tag[1] %} {% for post in pages_list %} {% if post.title != null %} {% if post.visible != false %} {% if group == null or group == post.group %}
  • {{ post.title }}: {{ post.date | date: "%B %d, %Y" }}
  • {% endif %} {% endif %} {% endif %} {% endfor %} {% assign pages_list = nil %} {% assign group = nil %}
{% endfor %}