Repository with sources and generator of https://larlet.fr/david/ https://larlet.fr/david/
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

archives_2020.html 709B

12345678910111213141516171819202122
  1. {% extends "base_2020.html" %}
  2. {% block title %}Publications (pres)quotidiennes{% endblock %}
  3. {% block description %}Archives 2021 des publications de David Larlet{% endblock %}
  4. {% block content %}
  5. <header>
  6. <h1>Publications (pres)quotidiennes</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. </p>
  14. </nav>
  15. <hr>
  16. <main>
  17. <p>Liste des publications en ordre chronologique :</p>
  18. {% for page in page_list %}
  19. <h2><a href="{{ page.url }}">{{ page.title }}</a> ({{ page.date }})</h2>
  20. {% endfor %}
  21. </main>
  22. {% endblock content %}