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.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 %}
  13. <a rel="prev"
  14. href="{{ prev.url }}"
  15. title="Publication précédente : {{ prev.title }}">← Précédent</a> •
  16. {% endif %}
  17. <nobr>
  18. <a href="/david/" title="Aller à l’accueil" rel="up">
  19. <svg class="icon icon-home">
  20. <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-home"></use>
  21. </svg>
  22. Accueil</a>
  23. </nobr>
  24. <nobr>
  25. <a href="/david/recherche/"
  26. title="Aller à la page de recherche"
  27. rel="search">
  28. <svg class="icon icon-search">
  29. <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-search"></use>
  30. </svg>
  31. Recherche</a>
  32. </nobr>
  33. {% if next and not next.is_draft %}
  34. • <a rel="next"
  35. href="{{ next.url }}"
  36. title="Publication suivante : {{ next.title }}">Suivant →</a>
  37. {% endif %}
  38. </p>
  39. </nav>
  40. <hr>
  41. {{ page.content }}
  42. {% if page.tags %}
  43. <nav>
  44. <p>
  45. {% for tag in page.tags %}
  46. <a href="/david/2023/{{ slugify(tag) }}/"
  47. title="Liste de tous les articles 2023 associés à cette étiquette"
  48. rel="tag">#{{ tag }}</a>
  49. {% endfor %}
  50. <a href="/david/#tags-2023" title="Liste de toutes les étiquettes 2023">
  51. <svg class="icon icon-tags">
  52. <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-tags"></use>
  53. </svg>
  54. tous ?</a>
  55. </p>
  56. </nav>
  57. {% endif %}
  58. <nav>
  59. <p class="center">
  60. {% if prev and not prev.is_draft %}
  61. <a rel="prev"
  62. href="{{ prev.url }}"
  63. title="Publication précédente : {{ prev.title }}">← Précédent</a> •
  64. {% endif %}
  65. <a href="/david/2023/" title="Liste des publications récentes">↑ En 2023</a>
  66. {% if next and not next.is_draft %}
  67. • <a rel="next"
  68. href="{{ next.url }}"
  69. title="Publication suivante : {{ next.title }}">Suivant →</a>
  70. {% endif %}
  71. </p>
  72. </nav>
  73. </article>
  74. {% endblock content %}