2martens.de/_layouts/category.html

16 lines
405 B
HTML

---
layout: default
---
{{ content }}
<ul class="post-list list-unstyled">
{% for post in site.categories[page.category] %}
<li class="mb-4">
<span class="small text-muted">{{ post.date | date: "%b %-d, %Y" }}</span>
<p class="h4 post-title">
<a class="post-link" href="{{ post.url | relative_url }}">{{ post.title }}</a>
</p>
</li>
{% endfor %}
</ul>