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

123456789101112131415161718192021222324252627282930313233343536373839
  1. {% extends "base_2020.html" %}
  2. {% block title %}Publications sporadiques 2022{% endblock %}
  3. {% block description %}Archives 2021 des publications de David Larlet{% endblock %}
  4. {% block content %}
  5. <header>
  6. <h1>Publications sporadiques 2022</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-2021-12.svg#icon-home"></use>
  12. </svg> Accueil</a>
  13. </p>
  14. </nav>
  15. <hr>
  16. <main>
  17. {% for month_year, group in page_list %}
  18. <h3>{{ month_year }}</h3>
  19. <p>
  20. {% for page in group|sort -%}
  21. <a href="{{ page.url }}">{{ page.title }}</a>
  22. {%- if not loop.last %}, {% else %}.{% endif %}
  23. {% endfor %}
  24. </p>
  25. {% endfor %}
  26. {% if tags %}
  27. <h3 id="tags">
  28. Par tags <svg class="icon icon-tags">
  29. <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-tags"></use>
  30. </svg>
  31. </h3>
  32. <p>
  33. {% for slug, name, counter in tags -%}
  34. <a href="/david/2021/{{ slug }}/">#{{ name }} ({{ counter }})</a>
  35. {% endfor %}
  36. </p>
  37. {% endif %}
  38. </main>
  39. {% endblock content %}