]> jfr.im git - irc/freenode/web-7.0.git/blobdiff - templates/artlist.html
Merge pull request #17 from freenode/responsive-1
[irc/freenode/web-7.0.git] / templates / artlist.html
index 78e79f439d556bcbaee4a1c328460d867d242465..115236b721b070375f90ea50235cb45d607f88b4 100644 (file)
@@ -1,9 +1,10 @@
 {% extends "base.html" %}
+{% set title = "archive" %}
 {% block content %}
-{% with articles = get_module("news").articles %}
+{% for article in get_module("news").articles %}
 <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>
-    <p class="art-link"><a href="{{ link }}">Read More</a></p>
 </div>
+{% endfor %}
 {% endblock content %}