123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- {% 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 %}
- <nobr>
- <a href="/david/" title="Aller à l’accueil" rel="up">
- <svg class="icon icon-home">
- <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-home"></use>
- </svg>
- Accueil</a>
- </nobr>
- •
- <nobr>
- <a href="/david/recherche/"
- title="Aller à la page de recherche"
- rel="search">
- <svg class="icon icon-search">
- <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-search"></use>
- </svg>
- Recherche</a>
- </nobr>
- {% 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 }}
- {% if page.tags %}
- <nav>
- <p>
- {% for tag in page.tags %}
- <a href="/david/2023/{{ slugify(tag) }}/"
- title="Liste de tous les articles 2023 associés à cette étiquette"
- rel="tag">#{{ tag }}</a>
- {% endfor %}
- <a href="/david/#tags-2023" title="Liste de toutes les étiquettes 2023">
- <svg class="icon icon-tags">
- <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-tags"></use>
- </svg>
- tous ?</a>
- </p>
- </nav>
- {% endif %}
- <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/2023/" title="Liste des publications récentes">↑ En 2023</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 %}
|