Skip to content

Latest commit

 

History

History
executable file
·
24 lines (21 loc) · 579 Bytes

categories.md

File metadata and controls

executable file
·
24 lines (21 loc) · 579 Bytes
layout permalink title
page
/categories/
Categories
{% for category in site.categories %}
{% capture category_name %}{{ category | first }}{% endcapture %}

<h3>{{ category_name | capitalize }}</h3>
<a name="{{ category_name | slugize }}"></a>
{% for post in site.categories[category_name] %}
<article>
    <li><font size="3"><a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a></font></li>
</article>
{% endfor %}
{% endfor %}