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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. <article>
  13. <header>
  14. <hgroup>
  15. <h1>#{{ tag_name }}</h1>
  16. <p>Publications relatives à cette étiquette</p>
  17. </hgroup>
  18. </header>
  19. <nav>
  20. <p class="center">
  21. <a href="/david/" title="Aller à l’accueil">
  22. Accueil</a>
  23. <a rel="tags"
  24. href="/david/#tags-2024"
  25. title="Liste de toutes les étiquettes">
  26. Étiquettes</a>
  27. </p>
  28. </nav>
  29. {% for page in page_list %}
  30. <h2>
  31. <a href="{{ page.url }}" title="Lien permanent vers cet article">{{ page.title }}</a> <time datetime="{{ page.date }}">{{ page.date|format_date }}</time>
  32. </h2>
  33. {{ page.content }}
  34. {% if page.tags %}
  35. <nav>
  36. <p>
  37. {% for tag in page.tags %}
  38. <a href="/david/2024/{{ slugify(tag) }}/"
  39. title="Liste de tous les articles 2024 associés à cette étiquette"
  40. rel="tag">#{{ tag }}</a>
  41. {% endfor %}
  42. <a href="/david/#tags-2024" title="Liste de toutes les étiquettes 2024">tous ?</a>
  43. </p>
  44. </nav>
  45. {% endif %}
  46. <hr>
  47. {% endfor %}
  48. </article>
  49. {% endblock content %}