A place to cache linked articles (think custom and personal wayback machine)
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.
123456789101112 |
- {% extends "base_2020.html" %}
- {% block title %}Articles archivés{% endblock %}
- {% block content %}
- <h1>Articles archivés</h1>
- <article>
- <ul>
- {% for cache in cache_list %}
- <li><a href="/david/cache/2020/{{ cache.hash_url }}/" title="Accès à l'article caché">{{ cache.title }}</a> (<a href="{{ cache.url }}" title="Accès à l'article original">original</a>)</li>
- {% endfor %}
- </ul>
- </article>
- {% endblock content %}
|