|
1234567891011121314151617181920 |
- {% extends "base_2020.html" %}
- {% block title %}Publications (pres)quotidiennes{% endblock %}
- {% block description %}Archives 2021 des publications de David Larlet{% endblock %}
- {% block content %}
- <header>
- <h1>Publications (pres)quotidiennes</h1>
- </header>
- <nav>
- <p class="center">
- <a href="/david/" title="Aller à l’accueil">🏠</a>
- </p>
- </nav>
- <hr>
- <main>
- <p>Liste des publications en ordre chronologique :</p>
- {% for page in page_list %}
- <h2><a href="{{ page.url }}">{{ page.title }}</a> ({{ page.date }})</h2>
- {% endfor %}
- </main>
- {% endblock content %}
|