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.

archives_2024.html 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {% extends "base_2024.html" %}
  2. {% block title %}Publications 2024{% endblock %}
  3. {% block description %}Archives 2024 des publications de David Larlet{% endblock %}
  4. {% block content %}
  5. <header>
  6. <hgroup>
  7. <h1>Publications 2024</h1>
  8. <p>Tentative de publication quotidienne</p>
  9. </hgroup>
  10. </header>
  11. <nav>
  12. <p>
  13. <a href="/david/" title="Aller à l’accueil" rel="up">Accueil</a>
  14. <a rel="tags"
  15. href="/david/2024/#tags"
  16. title="Liste de toutes les étiquettes">
  17. Étiquettes</a>
  18. <a href="/david/recherche/" title="Aller à la page de recherche" rel="search" data-no-instant>Recherche</a>
  19. <a href="/david/log/" title="Accès au flux RSS">Suivre</a>
  20. </p>
  21. </nav>
  22. {% for month_year, group in page_list %}
  23. <h2>{{ month_year }}</h2>
  24. <p>
  25. {% for page in group|sort -%}
  26. <a href="{{ page.url }}">{{ page.title }}</a>
  27. {%- if not loop.last %}, {% else %}.{% endif %}
  28. {% endfor %}
  29. </p>
  30. {% endfor %}
  31. {% if tags %}
  32. <h2 id="tags">Par tags</h2>
  33. <p>
  34. {% for slug, name, counter in tags -%}
  35. <a href="/david/2024/{{ slug }}/" rel="tag">#{{ name }} ({{ counter }})</a>
  36. {%- if not loop.last %}, {% else %}.{% endif %}
  37. {% endfor %}
  38. </p>
  39. {% endif %}
  40. {% endblock content %}