1
0
mirror of https://github.com/venthur/blag.git synced 2025-11-25 20:52:43 +00:00
Files
blag/templates/archive.html
Bastian Venthur 1c4f58ef02 WIP
2021-01-31 13:10:34 +01:00

24 lines
378 B
HTML

{% extends "base.html" %}
{% block title %}{{ title }}{% endblock %}
{% block head %}
{{ super() }}
{% endblock %}
{% block content %}
{% for entry in archive %}
<article>
<header>
<time datetime="{{entry.date}}">{{entry.date.date()}}</time>
<h1><a href="{{entry.dst}}">{{entry.title}}</a></h1>
</header>
</article>
{% endfor %}
{% endblock %}