diff options
Diffstat (limited to 'tuxlite_zf/templates/archives.html')
-rw-r--r-- | tuxlite_zf/templates/archives.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tuxlite_zf/templates/archives.html b/tuxlite_zf/templates/archives.html new file mode 100644 index 0000000..d866cd5 --- /dev/null +++ b/tuxlite_zf/templates/archives.html @@ -0,0 +1,17 @@ +{% extends "base.html" %} +{% block content %} + +<h1>Archives</h1> + +<table class="table-archive"> + <tbody> + {% for article in dates %} + <tr> + <td>{{ article.locale_date }}</td> + <td><a href='{{ article.url }}'>{{ article.title }}</a></td> + </tr> + {% endfor %} + </tbody> +</table> + +{% endblock %}
\ No newline at end of file |