123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {% extends "base_2020.html" %}
- {% block title %}Publications 2024{% endblock %}
- {% block description %}Archives 2024 des publications de David Larlet{% endblock %}
- {% block content %}
- <header>
- <h1>Publications 2024</h1>
- </header>
- <nav>
- <p class="center">
- <nobr>
- <a href="/david/" title="Aller à l’accueil" rel="up"
- ><svg class="icon icon-home">
- <use
- xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-home"
- ></use>
- </svg>
- Accueil</a
- >
- </nobr>
- •
- <nobr>
- <a href="/david/recherche/" title="Aller à la page de recherche" rel="search"
- ><svg class="icon icon-search">
- <use
- xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-search"
- ></use>
- </svg>
- Recherche</a
- >
- </nobr>
- </p>
- </nav>
- <hr>
- <main>
- {% for month_year, group in page_list %}
- <h3>{{ month_year }}</h3>
- <p>
- {% for page in group|sort -%}
- <a href="{{ page.url }}">{{ page.title }}</a>
- {%- if not loop.last %}, {% else %}.{% endif %}
- {% endfor %}
- </p>
- {% endfor %}
- {% if tags %}
- <h3 id="tags">
- Par tags <svg class="icon icon-tags">
- <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-tags"></use>
- </svg>
- </h3>
- <p>
- {% for slug, name, counter in tags -%}
- <a href="/david/2024/{{ slug }}/" rel="tag">#{{ name }} ({{ counter }})</a>
- {% endfor %}
- </p>
- {% endif %}
- </main>
- {% endblock content %}
|