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