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

123456789101112131415161718192021222324
  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 récentes (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. {% for page in page_list %}
  16. <h2><a href="{{ page.url }}">{{ page.title }}</a> ({{ page.date }})</h2>
  17. {{ page.extract }}
  18. {% endfor %}
  19. <hr>
  20. <p>
  21. Pour des publications plus anciennes (2019 et bien avant), vous pouvez aller voir du côté du <a href="/david/blog/">blog</a> ou des <a href="/david/stream/">journaux</a>.
  22. </p>
  23. </main>
  24. {% endblock content %}