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_2021.html 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {% extends "base_2020.html" %}
  2. {% block title %}Tag #{{ 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. <h1>Publications relatives au tag #{{ tag_name }}</h1>
  14. </header>
  15. <nav>
  16. <p class="center">
  17. <a href="/david/" title="Aller à l’accueil">
  18. <svg class="icon icon-home">
  19. <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-home"></use>
  20. </svg>
  21. Accueil</a>
  22. • <a rel="tags"
  23. href="/david/#tags-2023"
  24. title="Liste de toutes les étiquettes">
  25. <svg class="icon icon-tags">
  26. <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-tags"></use>
  27. </svg>
  28. Étiquettes</a>
  29. </p>
  30. </nav>
  31. <hr>
  32. <main>
  33. <p>Les plus récentes en premier, les 3 premières sont dépliées et ensuite c’est à la demande, bonne exploration !</p>
  34. {% for page in page_list %}
  35. <h2>
  36. <a href="{{ page.url }}" title="Lien permanent vers cet article">{{ page.title }}</a> ({{ page.date }})
  37. </h2>
  38. {% if loop.index <= 3 %}
  39. {{ page.content }}
  40. {% else %}
  41. <details>
  42. <summary>Déplier pour lire le contenu de la publication</summary>
  43. {{ page.content }}
  44. </details>
  45. {% endif %}
  46. {% endfor %}
  47. </main>
  48. {% endblock content %}