X-Git-Url: https://jfr.im/git/irc/freenode/web-7.0.git/blobdiff_plain/70fc1d2e9e8021f14a05d54f46692a96647125bc..0a1e9a90c92c422ea6891c37d692531d09ba32c4:/templates/artlist.html diff --git a/templates/artlist.html b/templates/artlist.html index 3ebb8237e..0bb5e822c 100644 --- a/templates/artlist.html +++ b/templates/artlist.html @@ -1,6 +1,13 @@ -
-

{{ 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 %} +
+

Blog Archive

+
+
+{% for article in get_module("news").articles|reverse %} + {{ artinfo.info(article, "b") }} +{% endfor %} +
+{% endblock content %}