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 %}

View File

@@ -18,7 +18,6 @@
<nav>
<ul>
<li><a href="/">Blog</a></li>
<li><a href="/archive.html">Archive</a></li>
<li><a href="/tags.html">Tags</a></li>
<li><a href="https://venthur.de/pages/about-me.html">About&nbsp;Me</a></li>
</ul>