annabunches.net/_includes/category_list.html

14 lines
384 B
HTML
Raw Normal View History

<h1 class="page-heading">{{ include.category | capitalize }}</h1>
<ul class="post-list">
{% for post in site.categories[include.category] limit:5 %}
<li>
<span class="post-meta">{{ post.date | date: "%Y-%m-%d" }}</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
</li>
{% endfor %}
</ul>