vrijkorteverhalen.nl/themes/zola-pickles/templates/categories/single.html

14 lines
460 B
HTML

{% extends "index.html" %}
{% block content %}
<div>
<h2>{{ term.name }}</h2>
{% for year, posts in term.pages | group_by(attribute="year") %}
<h3>{{ year }}</h3>
{% for page in posts %}
<p><a href="{{ page.permalink | safe }}">{{ page.title }}</a> - <time datetime="{{ page.date }}">{{ page.date | date(format=config.extra.timeformat | default(value="%B %e, %Y")) }}</time></p>
{% endfor %}
{% endfor %}
</div>
{% endblock content %}