23 lines
538 B
Plaintext
23 lines
538 B
Plaintext
{% extends "default.njk" %}
|
|
|
|
{% block main %}
|
|
|
|
<p>
|
|
{{ contents | safe }}
|
|
</p>
|
|
|
|
{% for date, posts in collections.posts | groupby('pub.year') | dictsort | reverse %}
|
|
<h2 class="{{classes.h2}}">{{ date }}</h2>
|
|
<hr class="{{ classes.hr }}"/>
|
|
{% for post in posts %}
|
|
<div>
|
|
<h4 class="{{ classes.h4 }}"><a href="{{ post.permalink }}">{{ post.title | safe }}</a></h4>
|
|
<h5>{{ post.description | safe }}</h5>
|
|
</div>
|
|
{% else %}
|
|
No posts
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|