aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/abstract.html
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@chimrod.com>2013-05-09 14:40:47 +0200
committerSébastien Dailly <sebastien@chimrod.com>2013-05-09 14:41:31 +0200
commitc1f9a31f0c8d6a75e8ab902720f0c4c4830ba6fc (patch)
tree3b102fb68ddcbef8c93fb2fad4c9a16f7d541247 /theme/templates/abstract.html
parent302756ec2b2712faf049ea7de5f094c09816d2c9 (diff)
Updated theme
Diffstat (limited to 'theme/templates/abstract.html')
-rw-r--r--theme/templates/abstract.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/theme/templates/abstract.html b/theme/templates/abstract.html
index 57ff2ab..5d10bfc 100644
--- a/theme/templates/abstract.html
+++ b/theme/templates/abstract.html
@@ -1,4 +1,5 @@
-{% macro abstract(article, title_level) %}
+{% macro abstract(title_level) %}
+ {% for article in (articles_page.object_list if articles_page else articles) %}
<article class="post">
<{{title_level}} class="title"><a href="{{ SITEURL }}/{{ article.url}}">{{article.title }}</a></{{title_level}}>
@@ -16,4 +17,8 @@
<div class="clear" />
</section>
</article>
+
+ {% endfor %}
+
+ {% include 'navigator.html' %}
{% endmacro %}