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.
123456789101112131415 |
- {% extends "base_2020.html" %}
- {% block lang %}{{ page.lang }}{% endblock %}
- {% block title %}{{ page.title }}{% endblock %}
- {% block content %}
- <article>
- <h1>{{ page.title }}</h1>
- <nav>
- {% if prev and not prev.is_draft %}<a rel="prev" href="{{ prev.url }}" title="Publication précédente : {{ prev.title }}">←</a> •{% endif %}
- <a href="/david/2020/" title="Liste des publications récentes">↑</a>
- {% if next and not next.is_draft %} • <a rel="next" href="{{ next.url }}" title="Publication suivante : {{ next.title }}">→</a>{% endif %}
- </nav>
- <hr>
- {{ page.content }}
- </article>
- {% endblock content %}
|