72 lines
3.0 KiB
HTML
72 lines
3.0 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{%- block content %}
|
|
<section class="content">
|
|
<h1 id="page-title">{% block index_title %}Tous les articles{% endblock index_title %}</h1>
|
|
|
|
{% for article in articles_page.object_list %}
|
|
<article class="post">
|
|
<header class="post-header">
|
|
<time datetime="{{ article.date.isoformat() }}" pubdate="pubdate">
|
|
{{ article.locale_date }}
|
|
</time>
|
|
<h1>
|
|
<a rel="bookmark"
|
|
href="{{ SITEURL }}/{{ article.url }}"
|
|
title="Lien permanent vers «{{ article.title }}»">
|
|
{{ article.title }}
|
|
</a>
|
|
</h1>
|
|
<div class="meta">
|
|
Dans «<a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>»
|
|
par <a href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>
|
|
{% if article.translations %}
|
|
Langues:
|
|
<a href="{{ SITEURL }}/{{ article.url }}">{{ article.lang or DEFAULT_LANG }}</a>
|
|
{% for translation in article.translations %}
|
|
<a href="{{ SITEURL }}/{{ translation.url }}">{{ translation.lang }}</a>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</div>
|
|
</header>
|
|
<div class="post-content">
|
|
{{ article.summary }}
|
|
</div>
|
|
<footer class="post-footer">
|
|
<a class="readmore" href="{{ SITEURL }}/{{ article.url }}">Lire la suite...</a>
|
|
</footer>
|
|
</article>
|
|
{% endfor %}
|
|
|
|
{%- if articles_page %}
|
|
<nav id="pagination">
|
|
{%- if articles_page.has_previous() %}
|
|
<a id="first_page" href="{{ SITEURL }}/{{ page_name }}.html"><<</a>
|
|
<a id="prev_page" href="{{ SITEURL }}/{{ page_name }}{{ articles_page.previous_page_number() if articles_page.previous_page_number() != 1 else "" }}.html"><</a>
|
|
{% else %}
|
|
<!-- <span id="first_page" class="a inactive"><<</span>
|
|
<span id="first_page" class="a inactive"><</span> -->
|
|
{% endif -%}
|
|
|
|
{%- for i in range(1,articles_paginator.num_pages+1) %}
|
|
{%- if articles_page.number - 5 < i < articles_page.number + 5 %}
|
|
{%- if i == articles_page.number %}
|
|
<span class="a active">{{loop.index}}</span>
|
|
{% else %}
|
|
<a href="{{SITEURL}}/{{ page_name }}{{ ( i if i != 1 else "" ) }}.html">{{loop.index}}</a>
|
|
{% endif -%}
|
|
{% endif -%}
|
|
{% endfor -%}
|
|
|
|
{%- if articles_page.has_next() %}
|
|
<a id="next_page" href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html">></a>
|
|
<a id="last_page" href="{{ SITEURL }}/{{ page_name }}{{ articles_paginator.num_pages }}.html">>></a>
|
|
{% else %}
|
|
<!-- <span id="next_page" class="a inactive">></span>
|
|
<span id="next_page" class="a inactive">>></span> -->
|
|
{% endif -%}
|
|
</nav>
|
|
{%- endif%}
|
|
</section>
|
|
{% endblock content -%}
|