1234567891011121314151617181920212223 |
- {% extends "base_2020.html" %}
- {% block title %}Articles archivés{% endblock %}
- {% block description %}Lien vers les publications externes mises en cache.{% endblock %}
- {% block content %}
- <header>
- <h1>Articles archivés</h1>
- </header>
- <nav>
- <p class="center">
- <a href="/david/" title="Aller à l’accueil"><svg class="icon icon-home">
- <use xlink:href="/static/david/icons2/symbol-defs.svg#icon-home"></use>
- </svg> Accueil</a>
- </p>
- </nav>
- <hr>
- <main>
- <ul>
- {% for cache in cache_list %}
- <li><a href="/david/cache/2021/{{ cache.hash_url }}/" title="Accès à l’article dans le cache local : {{ cache.title }}">{{ cache.title }}</a> (<a href="{{ cache.url }}" title="Accès à l’article original distant : {{ cache.title }}">original</a>)</li>
- {% endfor %}
- </ul>
- </main>
- {% endblock content %}
|