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

1234567891011121314151617181920212223242526272829
  1. {% extends "base_2020.html" %}
  2. {% block title %}Tag #{{ tag_name }}{% endblock %}
  3. {% block description %}Publications relatives au tag #{{ tag_name }}{% endblock %}
  4. {% block content %}
  5. <header>
  6. <h1>Publications relatives au tag #{{ tag_name }}</h1>
  7. </header>
  8. <nav>
  9. <p class="center">
  10. <a href="/david/" title="Aller à l’accueil"><svg class="icon icon-home">
  11. <use xlink:href="/static/david/icons2/symbol-defs.svg#icon-home"></use>
  12. </svg> Accueil</a>
  13. • <a rel="tags" href="/david/#tags" title="Liste de toutes les étiquettes"><svg class="icon icon-tags">
  14. <use xlink:href="/static/david/icons2/symbol-defs.svg#icon-tags"></use>
  15. </svg> Étiquettes</a>
  16. </p>
  17. </nav>
  18. <hr>
  19. <main>
  20. <p>Liste des publications en ordre chronologique :</p>
  21. {% for page in page_list %}
  22. <h2><a href="{{ page.url }}" title="Lien permanent vers cet article">{{ page.title }}</a> ({{ page.date }})</h2>
  23. <details>
  24. <summary>Déplier pour lire le contenu de l’article</summary>
  25. {{ page.content }}
  26. </details>
  27. {% endfor %}
  28. </main>
  29. {% endblock content %}