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.0KB

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