1
0
Files
sardines/templates/period_archives.html
Jérémie Ducastel 90d68a9a4b fixes + readme
* correctif liens pocket
* nommage des endblocks
* réadmet + ajout capture
2015-08-10 13:37:36 +02:00

28 lines
866 B
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "index.html" %}
{% block breadcrumb %}
<a href="/" class="item"><i class="home icon"></i></a>
{% if period|length==2 %}
<a class="item" href="/{{ period[0] }}/"><i class="calendar icon"></i> {{ period[0] }}</a>
<span class="active item"><i class="calendar outline icon"></i> {{ period[1] }}</span>
{% else %}
<a class="active item" href="/{{ period[0] }}/"><i class="calendar icon"></i> {{ period[0] }}</a>
{% endif %}
{% endblock breadcrumb %}
{% block pagination %}{% endblock pagination %}
{% block local_content %}
{% if articles %}{# contenu principal : cartes articles #}
<main id="main" class="ui cards">{% for article in dates %}
{% include "inc/article-card.html" %}{% endfor %}
</main>
{% else %}
<main class="">
<article class="ui segment">
<p>Nothing yet !</p>
</article>
</main>
{% endif %}
{% endblock local_content %}