X-Git-Url: https://jfr.im/git/irc/freenode/web-7.0.git/blobdiff_plain/c46546d516b0f7fec8feb38690831cb59aace43c..236c1df2ed27e7053d2c3ebe51b7f29c2d596c4d:/templates/artlist.html diff --git a/templates/artlist.html b/templates/artlist.html index f50072c77..0bb5e822c 100644 --- a/templates/artlist.html +++ b/templates/artlist.html @@ -1,9 +1,13 @@ +{% import "artinfo.html" as artinfo %} {% extends "base.html" %} +{% set title = "archive" %} {% block content %} -{% with articles = get_module("news").articles %} -
-

{{ Title }}  - {{ Date }} by {{ Author }}

- +
+

Blog Archive

+
+
+{% for article in get_module("news").articles|reverse %} + {{ artinfo.info(article, "b") }} +{% endfor %}
{% endblock content %}