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.

stream_archives.html 858B

123456789101112131415161718192021222324
  1. {% extends "base_2017.html" %}
  2. {% block title %}Pensées quotidiennes{% endblock %}
  3. {% block extra_head %}
  4. <!-- Canonical URL for SEO purposes -->
  5. <link rel="canonical" href="https://larlet.fr/david/stream/2018/">
  6. {% endblock %}
  7. {% block content %}
  8. <h1>Pensées de {{ note_list[0].date.year }}</h1>
  9. {% for note in note_list %}
  10. <article>
  11. <h2><a href="{{ note.url }}">{{ note.title }}</a> <time>{{ note.date }}</time></h2>
  12. {% if loop.index < 30 %}
  13. {{ note.content }}
  14. {% endif %}
  15. </article>
  16. {% endfor %}
  17. {% endblock content %}
  18. {% block nav %}
  19. <nav>
  20. <p>
  21. <a href="/david/stream/2015/">En 2015</a> | <a href="/david/lexique/">Lexique 2016</a> | <a href="/david/correspondances/2017/">Correspondances 2017</a> | <a href="/david/stream/2018/">En 2018</a> | <a href="/david/stream/2019/">En 2019</a>
  22. </p>
  23. </nav>
  24. {% endblock nav %}