annabunches.net/_includes/category_list.html

12 lines
329 B
HTML
Raw Normal View History

<ul class="post-list">
{% for post in site.categories[include.category] limit:include.limit %}
<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>