X-Git-Url: https://jfr.im/git/irc/freenode/web-7.0.git/blobdiff_plain/df74dd1dfc48b2c12ae6888fa0f2e6fca27a9645..53ebc26e74319e3575211c8fbef1315e9986d65c:/templates/artlist.html diff --git a/templates/artlist.html b/templates/artlist.html index 636e9c8ea..9013dedf2 100644 --- a/templates/artlist.html +++ b/templates/artlist.html @@ -1,5 +1,10 @@ -
-

{{ header }}

{{ published }} by {{ author }}

-

{% block ingress %}{% endblock %}

- -
\ No newline at end of file +{% import "artinfo.html" as artinfo %} +{% extends "base.html" %} +{% set title = "archive" %} +{% block content %} +
+{% for article in get_module("news").articles|reverse %} + {{ artinfo.info(article, "b") }} +{% endfor %} +
+{% endblock content %}