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

123456789101112131415161718192021
  1. {% extends "base_2020.html" %}
  2. {% block title %}Articles archivés{% endblock %}
  3. {% block description %}Lien vers les publications externes mises en cache.{% endblock %}
  4. {% block content %}
  5. <header>
  6. <h1>Articles archivés</h1>
  7. </header>
  8. <nav>
  9. <p class="center">
  10. <a href="/david/" title="Aller à l’accueil">🏠</a>
  11. </p>
  12. </nav>
  13. <hr>
  14. <main>
  15. <ul>
  16. {% for cache in cache_list %}
  17. <li><a href="/david/cache/2020/{{ 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>
  18. {% endfor %}
  19. </ul>
  20. </main>
  21. {% endblock content %}