blog/lib/layouts/index.njk
Viktor Varland 9f7a77273f
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
chore: big dump
2023-11-16 09:34:09 +01:00

24 lines
559 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 class="{{ classes.post_date }}">{{post.date}}</h5>
</div>
{% else %}
No posts
{% endfor %}
{% endfor %}
{% endblock %}