1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {% 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"
- ><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"
- ><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"
- >#{{ 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 %}
|