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

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

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