X-Git-Url: https://jfr.im/git/irc/freenode/web-7.0.git/blobdiff_plain/5ef311306dbb90aad1cc774c0ea50d2f8ae8a55e..91b0633ec8e33f314331a04894a6a0c1c0622c70:/templates/artlist.html diff --git a/templates/artlist.html b/templates/artlist.html index 3ebb8237e..9013dedf2 100644 --- a/templates/artlist.html +++ b/templates/artlist.html @@ -1,6 +1,10 @@ -
-

{{ Title }}  - {{ Date }} 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 %}