]> jfr.im git - irc/freenode/web-7.0.git/blob - templates/artlist.html
Update support.md
[irc/freenode/web-7.0.git] / templates / artlist.html
1 {% import "artinfo.html" as artinfo %}
2 {% extends "base.html" %}
3 {% set title = "archive" %}
4 {% block content %}
5 <div class="artlist heading">
6 <h1>Blog Archive</h1>
7 </div>
8 <div class="artlist main">
9 {% for article in get_module("news").articles|reverse %}
10 {{ artinfo.info(article, "b") }}
11 {% endfor %}
12 </div>
13 {% endblock content %}