mirror of
https://github.com/venthur/blag.git
synced 2025-11-25 20:52:43 +00:00
14 lines
234 B
HTML
14 lines
234 B
HTML
<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 %}
|
|
|
|
{% endfor %}
|