]> jfr.im git - irc/freenode/web-7.0.git/blob - templates/artlist.html
Update index.html
[irc/freenode/web-7.0.git] / templates / artlist.html
1 {% extends "base.html" %}
2 {% set title = "archive" %}
3 {% block content %}
4 <div class="artlist">
5 {% for article in get_module("news").articles|reverse %}
6 <div class="art">
7 <p><a href="{{ article.url }}"><b class="art">{{ article.title }}</b></a>&nbsp;
8 <span class="art-date">{{ article.datetime }} by {{ article.author }}</span></p>
9 </div>
10 {% endfor %}
11 </div>
12 {% endblock content %}