|
123456789101112131415161718192021222324 |
- {% extends "base_2020.html" %}
- {% block lang %}{{ page.lang }}{% endblock %}
- {% block title %}{{ page.title }}{% endblock %}
- {% block content %}
- <article>
- <h1>{{ page.title }}</h1>
- <nav>
- <p class="center">
- {% if prev and not prev.is_draft %}<a rel="prev" href="{{ prev.url }}" title="Publication précédente : {{ prev.title }}">←</a> •{% endif %}
- <a href="/david/" title="Aller à l’accueil" tabindex="1">🏠</a>
- {% if next and not next.is_draft %} • <a rel="next" href="{{ next.url }}" title="Publication suivante : {{ next.title }}">→</a>{% endif %}
- </p>
- </nav>
- <hr>
- {{ page.content }}
- <nav>
- <p class="center">
- {% if prev and not prev.is_draft %}<a rel="prev" href="{{ prev.url }}" title="Publication précédente : {{ prev.title }}">←</a> •{% endif %}
- <a href="/david/2020/" title="Liste des publications récentes">↑</a>
- {% if next and not next.is_draft %} • <a rel="next" href="{{ next.url }}" title="Publication suivante : {{ next.title }}">→</a>{% endif %}
- </p>
- </nav>
- </article>
- {% endblock content %}
|