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.

article_2020.html 1.1KB

123456789101112131415161718192021222324252627
  1. {% extends "base_2020.html" %}
  2. {% block lang %}{{ page.lang }}{% endblock %}
  3. {% block title %}{{ page.title }}{% endblock %}
  4. {% block description %}{{ page.extract|striptags }}{% endblock %}
  5. {% block content %}
  6. <article>
  7. <header>
  8. <h1>{{ page.title }}</h1>
  9. </header>
  10. <nav>
  11. <p class="center">
  12. {% if prev and not prev.is_draft %}<a rel="prev" href="{{ prev.url }}" title="Publication précédente : {{ prev.title }}">←</a> •{% endif %}
  13. <a href="/david/" title="Aller à l’accueil">🏠</a>
  14. {% if next and not next.is_draft %} • <a rel="next" href="{{ next.url }}" title="Publication suivante : {{ next.title }}">→</a>{% endif %}
  15. </p>
  16. </nav>
  17. <hr>
  18. {{ page.content }}
  19. <nav>
  20. <p class="center">
  21. {% if prev and not prev.is_draft %}<a rel="prev" href="{{ prev.url }}" title="Publication précédente : {{ prev.title }}">←</a> •{% endif %}
  22. <a href="/david/2020/" title="Liste des publications récentes">↑</a>
  23. {% if next and not next.is_draft %} • <a rel="next" href="{{ next.url }}" title="Publication suivante : {{ next.title }}">→</a>{% endif %}
  24. </p>
  25. </nav>
  26. </article>
  27. {% endblock content %}