Files
2martens.de/_layouts/category.html
2019-06-09 20:00:29 +02:00

25 lines
746 B
HTML

---
layout: default
---
<div class="reading-optimised">
{{ content }}
<ul class="post-list list-unstyled">
{% for post in site.categories[page.category] %}
<li class="mb-4">
<div class="small text-muted">
<span class="far fa-calendar-alt"></span>
<time datetime="{{ post.date | date_to_xmlschema }}">
{{ post.date | date: "%b %-d, %Y" }}
</time>
• {% include reading-time.html content=post.content %}
</div>
<p class="h4 post-title">
<a class="post-link" href="{{ post.url | relative_url }}">{{ post.title }}</a>
</p>
</li>
{% endfor %}
</ul>
</div>