Repository with sources and generator of https://larlet.fr/david/ https://larlet.fr/david/
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

stream_2019_article.html 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {% extends "base_2019.html" %}
  2. {% block lang %}{{ note.lang }}{% endblock lang %}
  3. {% block title %}{{ note.title }}{% endblock %}
  4. {% block extra_head %}
  5. <!-- Canonical URL for SEO purposes -->
  6. <link rel="canonical" href="https://larlet.fr{{ note.url }}">
  7. {% endblock %}
  8. {% block content %}
  9. <h1 class="single">
  10. <span><a id="jumper" href="#jumpto" title="Un peu perdu ?">?</a></span>
  11. {{ note.title }}
  12. <time>Publié le {{ note.date.strftime("%d %B").strip("0") }}</time>
  13. </h1>
  14. <article class="single">
  15. {{ note.content }}
  16. </article>
  17. {% endblock content %}
  18. {% block aside %}
  19. {% if note.lang == 'en' %}
  20. <aside>
  21. <p>
  22. Other articles in English:
  23. {% for post_en in published_posts_en %}
  24. <a href="{{ post_en.url }}">{{ post_en.title }}</a>{% if not loop.last %},{% else %}.{% endif %}
  25. {% endfor %}
  26. Oh, and most of <a href="/david/stream/2018/">the 2018 thoughts</a>.
  27. </p>
  28. </aside>
  29. {% else %}
  30. {{ super() }}
  31. {% endif %}
  32. {% endblock aside%}
  33. {% block nav %}
  34. <nav id="jumpto">
  35. <p>
  36. <a rel=prev href="{{ prev.url }}">← {{ prev.title }}</a> | <a href="/david/stream/{{ note.date.year }}/" title="Retour à la liste complète">↑ Liste complète</a>{% if next %} | <a rel=next href="{{ next.url }}">{{ next.title }} →</a>{% endif %}
  37. </p>
  38. </nav>
  39. {% endblock nav %}
  40. {% block extrajs %}
  41. {% include 'service_workers.html' %}
  42. {% endblock %}