diff options
Diffstat (limited to 'theme/templates/abstract.html')
| -rw-r--r-- | theme/templates/abstract.html | 7 | 
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 %} | 
