Repository with sources and generator of https://larlet.fr/david/ https://larlet.fr/david/
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

article_2020.html 1.3KB

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 }}">← 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. <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 }}">← Précédent</a> •{% endif %}
  24. <a href="/david/2021/" title="Liste des publications récentes">↑ En 2021</a>
  25. {% if next and not next.is_draft %} • <a rel="next" href="{{ next.url }}" title="Publication suivante : {{ next.title }}">Suivant →</a>{% endif %}
  26. </p>
  27. </nav>
  28. </article>
  29. {% endblock content %}