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

1234567891011121314151617181920212223
  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"><svg class="icon icon-home">
  11. <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-home"></use>
  12. </svg> Accueil</a>
  13. </p>
  14. </nav>
  15. <hr>
  16. <main>
  17. <ul>
  18. {% for cache in cache_list %}
  19. <li><a href="/david/cache/2024/{{ 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>
  20. {% endfor %}
  21. </ul>
  22. </main>
  23. {% endblock content %}