A place to cache linked articles (think custom and personal wayback machine)
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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 %}