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.

tag_2024.html 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {% extends "base_2024.html" %}
  2. {% block title %}Étiquette #{{ tag_name }}{% endblock %}
  3. {% block description %}Publications relatives au tag #{{ tag_name }}{% endblock %}
  4. {% block extra_head %}
  5. <style type="text/css">
  6. details[open] summary {
  7. display: none;
  8. }
  9. </style>
  10. {% endblock %}
  11. {% block content %}
  12. <header>
  13. <hgroup>
  14. <h1>#{{ tag_name }}</h1>
  15. <p>Publications relatives à cette étiquette</p>
  16. </hgroup>
  17. </header>
  18. <nav>
  19. <p>
  20. <a href="/david/" title="Aller à l’accueil">
  21. Accueil</a>
  22. <a rel="tags"
  23. href="/david/2024/#tags"
  24. title="Liste de toutes les étiquettes">
  25. Étiquettes</a>
  26. <a href="/david/recherche/" title="Aller à la page de recherche" rel="search" data-no-instant>Recherche</a>
  27. <a href="/david/log/" title="Accès au flux RSS">Suivre</a>
  28. </p>
  29. </nav>
  30. {% for page in page_list %}
  31. <h2>
  32. <a href="{{ page.url }}" title="Lien permanent vers cet article">{{ page.title }}</a> <time datetime="{{ page.date }}">{{ page.date|format_date }}</time>
  33. </h2>
  34. {{ page.content }}
  35. {% if page.tags %}
  36. <nav>
  37. <p>
  38. {% for tag in page.tags %}
  39. <a href="/david/2024/{{ slugify(tag) }}/"
  40. title="Liste de tous les articles 2024 associés à cette étiquette"
  41. rel="tag">#{{ tag }}</a>
  42. {% endfor %}
  43. <a href="/david/2024/#tags" title="Liste de toutes les étiquettes 2024">tous ?</a>
  44. </p>
  45. </nav>
  46. {% endif %}
  47. {% endfor %}
  48. {% endblock content %}