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 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. <nobr>
  14. <a href="/david/" title="Aller à l’accueil"
  15. ><svg class="icon icon-home">
  16. <use
  17. xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-home"
  18. ></use>
  19. </svg>
  20. Accueil</a
  21. >
  22. </nobr>
  23. <nobr>
  24. <a href="/david/recherche/" title="Aller à la page de recherche"
  25. ><svg class="icon icon-search">
  26. <use
  27. xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-search"
  28. ></use>
  29. </svg>
  30. Recherche</a
  31. >
  32. </nobr>
  33. {% if next and not next.is_draft %} • <a rel="next" href="{{ next.url }}" title="Publication suivante : {{ next.title }}">Suivant →</a>{% endif %}
  34. </p>
  35. </nav>
  36. <hr>
  37. {{ page.content }}
  38. {% if page.tags %}
  39. <nav>
  40. <p>
  41. {% for tag in page.tags %}
  42. <a href="/david/2021/{{ slugify(tag) }}/"
  43. title="Liste de tous les articles associés à cette étiquette"
  44. >#{{ tag }}</a>
  45. {% endfor %}
  46. <a href="/david/#tags"
  47. title="Liste de toutes les étiquettes existantes"
  48. ><svg class="icon icon-tags">
  49. <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-tags"></use>
  50. </svg>
  51. tous ?</a
  52. >
  53. </p>
  54. </nav>
  55. {% endif%}
  56. <nav>
  57. <p class="center">
  58. {% 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 %}
  59. <a href="/david/2022/" title="Liste des publications récentes">↑ En 2022</a>
  60. {% if next and not next.is_draft %} • <a rel="next" href="{{ next.url }}" title="Publication suivante : {{ next.title }}">Suivant →</a>{% endif %}
  61. </p>
  62. </nav>
  63. </article>
  64. {% endblock content %}