Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 694 Bytes

categories.md

File metadata and controls

25 lines (23 loc) · 694 Bytes
layout title permalink
page
Story Categories
/stories/categories/
{% for category in site.categories %}
{% capture category_name %}{{ category | first }}{% endcapture %}

<h3 class="category-head">{{ category_name }}</h3>
<a name="{{ category_name | slugize }}"></a>
{% for post in site.categories[category_name] %}
<article class="archive-item">
  <p class="light">{{ post.date | date: "%b %d, %Y" }}
    <a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a>
  </p>
</article>
{% endfor %}
{% endfor %}