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_2024.html 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {% extends "base_2024.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. <hgroup>
  9. <h1>{{ page.title }}</h1>
  10. <p>Le <time datetime="{{ page.date }}">{{ page.date|format_date }}</time></p>
  11. </hgroup>
  12. </header>
  13. <nav>
  14. <p class="center">
  15. {% if prev and not prev.is_draft %}
  16. <a rel="prev"
  17. href="{{ prev.url }}"
  18. title="Publication précédente : {{ prev.title }}">← Précédent</a> •
  19. {% endif %}
  20. <nobr>
  21. <a href="/david/" title="Aller à l’accueil" rel="up">Accueil</a>
  22. </nobr>
  23. <nobr>
  24. <a href="/david/recherche/"
  25. title="Aller à la page de recherche"
  26. rel="search">Recherche</a>
  27. </nobr>
  28. {% if next and not next.is_draft %}
  29. • <a rel="next"
  30. href="{{ next.url }}"
  31. title="Publication suivante : {{ next.title }}">Suivant →</a>
  32. {% endif %}
  33. </p>
  34. </nav>
  35. {{ page.content }}
  36. {% if page.tags %}
  37. <nav>
  38. <p>
  39. {% for tag in page.tags %}
  40. <a href="/david/2024/{{ slugify(tag) }}/"
  41. title="Liste de tous les articles 2024 associés à cette étiquette"
  42. rel="tag">#{{ tag }}</a>
  43. {% endfor %}
  44. <a href="/david/#tags-2024" title="Liste de toutes les étiquettes 2024">tous ?</a>
  45. </p>
  46. </nav>
  47. {% endif %}
  48. <nav>
  49. <p class="center">
  50. {% if prev and not prev.is_draft %}
  51. <a rel="prev"
  52. href="{{ prev.url }}"
  53. title="Publication précédente : {{ prev.title }}">← Précédent</a> •
  54. {% endif %}
  55. <a href="/david/2024/" title="Liste des publications récentes">↑ En 2024</a>
  56. {% if next and not next.is_draft %}
  57. • <a rel="next"
  58. href="{{ next.url }}"
  59. title="Publication suivante : {{ next.title }}">Suivant →</a>
  60. {% endif %}
  61. </p>
  62. </nav>
  63. <aside>
  64. <theme-toggle></theme-toggle>
  65. </aside>
  66. </article>
  67. {% endblock content %}