Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Latest commit

 

History

History
26 lines (18 loc) · 541 Bytes

File metadata and controls

26 lines (18 loc) · 541 Bytes
title Posts
layout navigation

{% for post in site.posts -%}

  • [{{ post.title }}]({{ post.url }}), {{ post.date | date: "%B %-d, %Y" }} {% endfor %}

By Category

{% for category in site.categories %} {% capture category_name %}{{ category | first }}{% endcapture %}

{{ category_name }}

{% for post in site.categories[category_name] -%}

  • [{{ post.title }}]({{ post.url }}), {{ post.date | date: "%B %-d, %Y" }} {% endfor %}

{% endfor %}