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

1234567891011121314151617181920212223242526272829303132333435363738394041
  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"><svg class="icon icon-home">
  18. <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-home"></use>
  19. </svg> Accueil</a>
  20. • <a rel="tags" href="/david/#tags" title="Liste de toutes les étiquettes"><svg class="icon icon-tags">
  21. <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-tags"></use>
  22. </svg> Étiquettes</a>
  23. </p>
  24. </nav>
  25. <hr>
  26. <main>
  27. <p>Les plus récentes en premier, les 3 premières sont dépliées et ensuite c’est à la demande, bonne exploration !</p>
  28. {% for page in page_list %}
  29. <h2><a href="{{ page.url }}" title="Lien permanent vers cet article">{{ page.title }}</a> ({{ page.date }})</h2>
  30. {% if loop.index <= 3 %}
  31. {{ page.content }}
  32. {% else %}
  33. <details>
  34. <summary>Déplier pour lire le contenu de la publication</summary>
  35. {{ page.content }}
  36. </details>
  37. {% endif %}
  38. {% endfor %}
  39. </main>
  40. {% endblock content %}