X-Git-Url: https://jfr.im/git/irc/freenode/web-7.0.git/blobdiff_plain/df74dd1dfc48b2c12ae6888fa0f2e6fca27a9645..refs/pull/42/head:/templates/artlist.html diff --git a/templates/artlist.html b/templates/artlist.html index 636e9c8ea..c04ffa00f 100644 --- a/templates/artlist.html +++ b/templates/artlist.html @@ -1,5 +1,12 @@ +{% extends "base.html" %} +{% set title = "archive" %} +{% block content %} +
+{% for article in get_module("news").articles|reverse %}
-

{{ header }}

{{ published }} by {{ author }}

-

{% block ingress %}{% endblock %}

- -
\ No newline at end of file +

{{ article.title }}  + {{ article.datetime }} by {{ article.author }}

+
+{% endfor %} + +{% endblock content %}