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_article.html 1.0KB

1234567891011121314151617181920212223242526272829
  1. {% extends "base_2020.html" %}
  2. {% block lang %}{% if cache.language %}{{ cache.language[:2] }}{% endif %}{% endblock lang %}
  3. {% block title %}{{ cache.title }} (archive){% endblock %}
  4. {% block description %}Publication mise en cache pour en conserver une trace.{% endblock %}
  5. {% block extra_head %}
  6. <meta name="robots" content="noindex, nofollow">
  7. <meta content="origin-when-cross-origin" name="referrer">
  8. <!-- Canonical URL for SEO purposes -->
  9. <link rel="canonical" href="{{ cache.url }}">
  10. {% endblock %}
  11. {% block content %}
  12. <article>
  13. <header>
  14. <h1>{{ cache.title }}</h1>
  15. </header>
  16. <nav>
  17. <p class="center">
  18. <a href="/david/" title="Aller à l’accueil"><svg class="icon icon-home">
  19. <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-home"></use>
  20. </svg> Accueil</a> •
  21. <a href="{{ cache.url }}" title="Lien vers le contenu original">Source originale</a>
  22. <br>
  23. Mis en cache le {{ cache.archive_date }}
  24. </p>
  25. </nav>
  26. <hr>
  27. {{ cache.content }}
  28. </article>
  29. {% endblock content %}