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 1000B

123456789101112131415161718192021222324252627282930313233
  1. {% extends "base_2020.html" %}
  2. {% block title %}Publications récentes (2020){% endblock %}
  3. {% block description %}Archives 2020 des publications de David Larlet{% endblock %}
  4. {% block content %}
  5. <header>
  6. <h1>Publications quasi-hebdomadaires (2020)</h1>
  7. </header>
  8. <nav>
  9. <p class="center">
  10. <a href="/david/" title="Aller à l’accueil">🏠</a>
  11. </p>
  12. </nav>
  13. <hr>
  14. <main>
  15. <p>Liste des publications en ordre chronologique :</p>
  16. {% for page in page_list %}
  17. <h2><a href="{{ page.url }}">{{ page.title }}</a> ({{ page.date }})</h2>
  18. {{ page.extract }}
  19. {% endfor %}
  20. <hr>
  21. <p>
  22. Vous pouvez consulter les différents
  23. <a href="/david/blog/">billets de blog</a> qui ont été rédigés de 2004 à 2019
  24. ou les <a href="/david/stream/">entrées de journaux</a> relativement
  25. régulières entre 2009 et 2019.
  26. </p>
  27. <p>
  28. <em>Notez qu’avec un tel historique, certaines informations sont obsolètes et/ou plus cautionnées.</em>
  29. </p>
  30. </main>
  31. {% endblock content %}