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

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 }}">← Précédent</a> •{% endif %}
  13. <a href="/david/" title="Aller à l’accueil"><svg class="icon icon-home">
  14. <use xlink:href="/static/david/icons2/symbol-defs.svg#icon-home"></use>
  15. </svg> Accueil</a>
  16. {% if next and not next.is_draft %} • <a rel="next" href="{{ next.url }}" title="Publication suivante : {{ next.title }}">Suivant →</a>{% endif %}
  17. </p>
  18. </nav>
  19. <hr>
  20. {{ page.content }}
  21. {% if page.tags %}
  22. <nav>
  23. <p>
  24. {% for tag in page.tags %}
  25. <a href="/david/2021/{{ slugify(tag) }}/"
  26. title="Liste de tous les articles associés à cette étiquette"
  27. >#{{ tag }}</a>
  28. {% endfor %}
  29. <a href="/david/#tags"
  30. title="Liste de toutes les étiquettes existantes"
  31. ><svg class="icon icon-tags">
  32. <use xlink:href="/static/david/icons2/symbol-defs.svg#icon-tags"></use>
  33. </svg> tous ?</a>
  34. </p>
  35. </nav>
  36. {% endif%}
  37. <nav>
  38. <p class="center">
  39. {% if prev and not prev.is_draft %}<a rel="prev" href="{{ prev.url }}" title="Publication précédente : {{ prev.title }}">← Précédent</a> •{% endif %}
  40. <a href="/david/2021/" title="Liste des publications récentes">↑ En 2021</a>
  41. {% if next and not next.is_draft %} • <a rel="next" href="{{ next.url }}" title="Publication suivante : {{ next.title }}">Suivant →</a>{% endif %}
  42. </p>
  43. </nav>
  44. </article>
  45. {% endblock content %}