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 584B

123456789101112131415161718
  1. {% extends "base_2020.html" %}
  2. {% block title %}Articles archivés{% endblock %}
  3. {% block content %}
  4. <h1>Articles archivés</h1>
  5. <nav>
  6. <p class="center">
  7. <a href="/david/" title="Aller à l’accueil" tabindex="1">🏠</a>
  8. </p>
  9. </nav>
  10. <hr>
  11. <article>
  12. <ul>
  13. {% for cache in cache_list %}
  14. <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>
  15. {% endfor %}
  16. </ul>
  17. </article>
  18. {% endblock content %}