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