X-Git-Url: https://jfr.im/git/irc/freenode/web-7.0.git/blobdiff_plain/df74dd1dfc48b2c12ae6888fa0f2e6fca27a9645..91b0633ec8e33f314331a04894a6a0c1c0622c70:/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 %}