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 1.9KB

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