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.

cache_archives.html 453B

123456789101112
  1. {% extends "base_2020.html" %}
  2. {% block title %}Articles archivés{% endblock %}
  3. {% block content %}
  4. <h1>Articles archivés</h1>
  5. <article>
  6. <ul>
  7. {% for cache in cache_list %}
  8. <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>
  9. {% endfor %}
  10. </ul>
  11. </article>
  12. {% endblock content %}