1234567891011121314151617181920212223242526272829 |
- {% extends "base_2020.html" %}
- {% block lang %}{{ page.lang }}{% endblock %}
- {% block title %}{{ page.title }}{% endblock %}
- {% block description %}{{ page.extract|striptags }}{% endblock %}
- {% block content %}
- <article>
- <header>
- <h1>{{ page.title }}</h1>
- </header>
- <nav>
- <p class="center">
- {% if prev and not prev.is_draft %}<a rel="prev" href="{{ prev.url }}" title="Publication précédente : {{ prev.title }}">← Précédent</a> •{% endif %}
- <a href="/david/" title="Aller à l’accueil"><svg class="icon icon-home">
- <use xlink:href="/static/david/icons2/symbol-defs.svg#icon-home"></use>
- </svg> Accueil</a>
- {% if next and not next.is_draft %} • <a rel="next" href="{{ next.url }}" title="Publication suivante : {{ next.title }}">Suivant →</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 }}">← Précédent</a> •{% endif %}
- <a href="/david/2021/" title="Liste des publications récentes">↑ En 2021</a>
- {% if next and not next.is_draft %} • <a rel="next" href="{{ next.url }}" title="Publication suivante : {{ next.title }}">Suivant →</a>{% endif %}
- </p>
- </nav>
- </article>
- {% endblock content %}
|