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

12345678910111213141516171819202122232425262728293031
  1. {% extends "base_2019.html" %}
  2. {% block title %}Articles archivés{% endblock %}
  3. {% block extra_head %}
  4. <meta name="robots" content="noindex, nofollow">
  5. <!-- Canonical URL for SEO purposes -->
  6. <link rel="canonical" href="https://larlet.fr/david/cache/">
  7. {% endblock %}
  8. {% block content %}
  9. <h1>
  10. <span><a id="jumper" href="#jumpto" title="Un peu perdu ?">?</a></span>
  11. Articles archivés
  12. <time>Pour la pérennité des contenus liés. Non-indexé, retrait sur simple email.</time>
  13. </h1>
  14. <section>
  15. <article>
  16. <ul>
  17. {% for cache in caches %}
  18. <li><a href="/david/cache/{{ 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>
  19. {% endfor %}
  20. </ul>
  21. </article>
  22. </section>
  23. {% endblock content %}
  24. {% block nav %}
  25. <nav id="jumpto">
  26. <p>
  27. <a href="/david/blog/">Accueil du blog</a> |
  28. <a href="/david/stream/2019/">Accueil du flux</a>
  29. </p>
  30. </nav>
  31. {% endblock nav %}