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.

blog_archives.html 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {% extends "base_2019.html" %}
  2. {% block title %}Expériences bienveillantes{% endblock %}
  3. {% block extra_head %}
  4. <!-- Canonical URL for SEO purposes -->
  5. <link rel="canonical" href="https://larlet.fr/david/blog/">
  6. {% endblock %}
  7. {% block content %}
  8. <h1>
  9. <span><a id="jumper" href="#jumpto" title="Un peu perdu ?">?</a></span>
  10. Expériences bienveillantes
  11. <time>Archives de 2004 à 2019</time>
  12. </h1>
  13. <section>
  14. <section class="gallery">
  15. {% for post in posts[:8] %}
  16. <article>
  17. <figure>
  18. <a href="{{ post.url }}" title="Accéder à l'article complet"><img src="{{ post.url_image_thumbnail }}" alt="" /></a>
  19. <figcaption>
  20. <a href="{{ post.url }}" title="Accéder à l’article complet">{{ post.title }}</a>
  21. </figcaption>
  22. </figure>
  23. </article>
  24. {% endfor %}
  25. </section>
  26. <article>
  27. <h2>Billets suivants</h2>
  28. {% for year, posts_year in posts[8:]|groupby('date.year')|reverse %}
  29. <h3>En {{ year }}</h3>
  30. <ul class="with_two_columns">
  31. {% for post in posts_year %}
  32. <li><a href="{{ post.url }}" title="Accéder à l’article complet">{{ post.title }}</a></li>
  33. {% endfor %}
  34. </ul>
  35. {% endfor %}
  36. </article>
  37. </section>
  38. {% endblock content %}
  39. {% block nav %}
  40. <nav id="jumpto">
  41. <p>
  42. <a href="/david/biologeek/">Archives en français (2004-2011)</a> |
  43. <a href="/david/thoughts/">Archives en anglais (2011-2012)</a>
  44. </p>
  45. </nav>
  46. {% endblock nav %}