Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 541 Bytes

posts.md

File metadata and controls

26 lines (18 loc) · 541 Bytes
title layout
Posts
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 %}