Repository with sources and generator of https://larlet.fr/david/ https://larlet.fr/david/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

article_2020.html 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {% extends "base_2020.html" %}
  2. {% block lang %}{{ page.lang }}{% endblock %}
  3. {% block title %}{{ page.title }}{% endblock %}
  4. {% block description %}{{ page.extract|striptags }}{% endblock %}
  5. {% block content %}
  6. <article>
  7. <header>
  8. <h1>{{ page.title }}</h1>
  9. </header>
  10. <nav>
  11. <p class="center">
  12. {% 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 %}
  13. <nobr>
  14. <a href="/david/" title="Aller à l’accueil" rel="up"
  15. ><svg class="icon icon-home">
  16. <use
  17. xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-home"
  18. ></use>
  19. </svg>
  20. Accueil</a
  21. >
  22. </nobr>
  23. <nobr>
  24. <a href="/david/recherche/" title="Aller à la page de recherche" rel="search"
  25. ><svg class="icon icon-search">
  26. <use
  27. xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-search"
  28. ></use>
  29. </svg>
  30. Recherche</a
  31. >
  32. </nobr>
  33. {% if next and not next.is_draft %} • <a rel="next" href="{{ next.url }}" title="Publication suivante : {{ next.title }}">Suivant →</a>{% endif %}
  34. </p>
  35. </nav>
  36. <hr>
  37. {{ page.content }}
  38. {% if page.tags %}
  39. <nav>
  40. <p>
  41. {% for tag in page.tags %}
  42. <a href="/david/2023/{{ slugify(tag) }}/"
  43. title="Liste de tous les articles 2023 associés à cette étiquette"
  44. rel="tag"
  45. >#{{ tag }}</a>
  46. {% endfor %}
  47. <a href="/david/#tags-2023"
  48. title="Liste de toutes les étiquettes 2023"
  49. ><svg class="icon icon-tags">
  50. <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-tags"></use>
  51. </svg>
  52. tous ?</a
  53. >
  54. </p>
  55. </nav>
  56. {% endif%}
  57. <nav>
  58. <p class="center">
  59. {% 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 %}
  60. <a href="/david/2023/" title="Liste des publications récentes">↑ En 2023</a>
  61. {% if next and not next.is_draft %} • <a rel="next" href="{{ next.url }}" title="Publication suivante : {{ next.title }}">Suivant →</a>{% endif %}
  62. </p>
  63. </nav>
  64. </article>
  65. {% endblock content %}