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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. <hr>
  36. {{ page.content }}
  37. {% if page.tags %}
  38. <nav>
  39. <p>
  40. {% for tag in page.tags %}
  41. <a href="/david/2024/{{ slugify(tag) }}/"
  42. title="Liste de tous les articles 2024 associés à cette étiquette"
  43. rel="tag">#{{ tag }}</a>
  44. {% endfor %}
  45. <a href="/david/#tags-2024" title="Liste de toutes les étiquettes 2024">tous ?</a>
  46. </p>
  47. </nav>
  48. {% endif %}
  49. <nav>
  50. <p class="center">
  51. {% if prev and not prev.is_draft %}
  52. <a rel="prev"
  53. href="{{ prev.url }}"
  54. title="Publication précédente : {{ prev.title }}">← Précédent</a> •
  55. {% endif %}
  56. <a href="/david/2024/" title="Liste des publications récentes">↑ En 2024</a>
  57. {% if next and not next.is_draft %}
  58. • <a rel="next"
  59. href="{{ next.url }}"
  60. title="Publication suivante : {{ next.title }}">Suivant →</a>
  61. {% endif %}
  62. </p>
  63. </nav>
  64. </article>
  65. {% endblock content %}