1
0
mirror of https://github.com/venthur/blag.git synced 2025-11-25 20:52:43 +00:00
This commit is contained in:
Bastian Venthur
2021-01-31 13:10:34 +01:00
parent a70b51cebb
commit 1c4f58ef02
3 changed files with 18 additions and 29 deletions

View File

@@ -9,17 +9,14 @@
{% block content %}
<h1>Archive</h1>
{% for entry in archive %}
{% if entry.title %}
<h1><a href="{{entry.dst}}">{{entry.title}}</a></h1>
{% endif %}
{% if entry.date %}
<p>Written on {{ entry.date.date() }}.</p>
{% endif %}
<article>
<header>
<time datetime="{{entry.date}}">{{entry.date.date()}}</time>
<h1><a href="{{entry.dst}}">{{entry.title}}</a></h1>
</header>
</article>
{% endfor %}