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_2020.html 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {% extends "base_2020.html" %}
  2. {% block title %}Publications 2024{% endblock %}
  3. {% block description %}Archives 2024 des publications de David Larlet{% endblock %}
  4. {% block content %}
  5. <header>
  6. <h1>Publications 2024</h1>
  7. </header>
  8. <nav>
  9. <p class="center">
  10. <nobr>
  11. <a href="/david/" title="Aller à l’accueil" rel="up"
  12. ><svg class="icon icon-home">
  13. <use
  14. xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-home"
  15. ></use>
  16. </svg>
  17. Accueil</a
  18. >
  19. </nobr>
  20. <nobr>
  21. <a href="/david/recherche/" title="Aller à la page de recherche" rel="search"
  22. ><svg class="icon icon-search">
  23. <use
  24. xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-search"
  25. ></use>
  26. </svg>
  27. Recherche</a
  28. >
  29. </nobr>
  30. </p>
  31. </nav>
  32. <hr>
  33. <main>
  34. {% for month_year, group in page_list %}
  35. <h3>{{ month_year }}</h3>
  36. <p>
  37. {% for page in group|sort -%}
  38. <a href="{{ page.url }}">{{ page.title }}</a>
  39. {%- if not loop.last %}, {% else %}.{% endif %}
  40. {% endfor %}
  41. </p>
  42. {% endfor %}
  43. {% if tags %}
  44. <h3 id="tags">
  45. Par tags <svg class="icon icon-tags">
  46. <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-tags"></use>
  47. </svg>
  48. </h3>
  49. <p>
  50. {% for slug, name, counter in tags -%}
  51. <a href="/david/2024/{{ slug }}/" rel="tag">#{{ name }} ({{ counter }})</a>
  52. {% endfor %}
  53. </p>
  54. {% endif %}
  55. </main>
  56. {% endblock content %}