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

1234567891011121314151617181920212223242526272829
  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" tabindex="1">🏠</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. <main>
  19. {{ page.content }}
  20. </main>
  21. <nav>
  22. <p class="center">
  23. {% if prev and not prev.is_draft %}<a rel="prev" href="{{ prev.url }}" title="Publication précédente : {{ prev.title }}">←</a> •{% endif %}
  24. <a href="/david/2020/" title="Liste des publications récentes">↑</a>
  25. {% if next and not next.is_draft %} • <a rel="next" href="{{ next.url }}" title="Publication suivante : {{ next.title }}">→</a>{% endif %}
  26. </p>
  27. </nav>
  28. </article>
  29. {% endblock content %}