bbb/categories.md
2020-12-11 16:21:49 +00:00

20 lines
516 B
Markdown

---
layout: page
title: Categories
---
Browse all posts by categories
{% for category in site.categories %}
{% capture category_name %}{{ category | first }}{% endcapture %}
<div id="#{{ category_name | slugize }}"></div>
<p></p>
<h2 class="category-head">{{ category_name | capitalize }}</h2>
<a name="{{ category_name | slugize }}"></a>
<ul>
{% for post in site.categories[category_name] %}
<li><a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a></li>
{% endfor %}
</ul>
{% endfor %}