]> jfr.im git - irc/freenode/web-7.0.git/blobdiff - templates/artlist.html
Update support.md
[irc/freenode/web-7.0.git] / templates / artlist.html
index 38b547b9bc4dd6c086327c33b40ae4d666ab488e..0bb5e822cc0316e0d1475fe31ff930cc9a5826c0 100644 (file)
@@ -1,12 +1,13 @@
+{% import "artinfo.html" as artinfo %}
 {% extends "base.html" %}
 {% set title = "archive" %}
 {% block content %}
-<div class="artlist">
-{% for article in get_module("news").articles|reverse %}
-<div class="art">
-    <p><a href="{{ article.url }}"><b class="art">{{ article.title }}</b></a>&nbsp;
-    <span class="art-date">{{ article.datetime }} by {{ article.author }}</span></p>
+<div class="artlist heading">
+    <h1>Blog Archive</h1>
 </div>
+<div class="artlist main">
+{% for article in get_module("news").articles|reverse %}
+    {{ artinfo.info(article, "b") }}
 {% endfor %}
 </div>
 {% endblock content %}