|
|
|
|
@ -4,22 +4,6 @@
|
|
|
|
|
{% if articles %} |
|
|
|
|
{% for article in articles_page.object_list %} |
|
|
|
|
|
|
|
|
|
{# First item #} |
|
|
|
|
{% if loop.first and not articles_page.has_previous() %} |
|
|
|
|
<aside id="featured" class="body"> |
|
|
|
|
<article> |
|
|
|
|
<h1 class="entry-title"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1> |
|
|
|
|
{% include 'article_infos.html' %}{{ article.content }}{% include 'comments.html' %} |
|
|
|
|
</article> |
|
|
|
|
</aside><!-- /#featured --> |
|
|
|
|
{% if loop.length > 1 %} |
|
|
|
|
<section id="content" class="body"> |
|
|
|
|
<h1>Other articles</h1> |
|
|
|
|
<hr /> |
|
|
|
|
<ol id="posts-list" class="hfeed"> |
|
|
|
|
{% endif %} |
|
|
|
|
{# other items #} |
|
|
|
|
{% else %} |
|
|
|
|
{% if loop.first %} |
|
|
|
|
<section id="content" class="body"> |
|
|
|
|
<ol id="posts-list" class="hfeed" start="{{ articles_paginator.per_page -1 }}"> |
|
|
|
|
@ -37,7 +21,6 @@
|
|
|
|
|
{% include 'comments.html' %} |
|
|
|
|
</div><!-- /.entry-content --> |
|
|
|
|
</article></li> |
|
|
|
|
{% endif %} |
|
|
|
|
{% if loop.last %} |
|
|
|
|
{% if loop.length > 1 or articles_page.has_other_pages() %} |
|
|
|
|
</ol><!-- /#posts-list --> |
|
|
|
|
|