1
0
Files
sardines/templates/period_archives.html
2015-08-09 22:49:57 +02:00

28 lines
852 B
HTML
Raw 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 %}