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

123456789101112131415
  1. {% extends "base_2020.html" %}
  2. {% block title %}{{ cache.title }} (archive){% endblock %}
  3. {% block extra_head %}
  4. <meta name="robots" content="noindex, nofollow">
  5. <meta content="origin-when-cross-origin" name="referrer">
  6. <!-- Canonical URL for SEO purposes -->
  7. <link rel="canonical" href="{{ cache.url }}">
  8. {% endblock %}
  9. {% block content %}
  10. <article>
  11. <h1>{{ cache.title }}</h1>
  12. <h2><a href="{{ cache.url }}">Source originale du contenu</a></h2>
  13. {{ cache.content }}
  14. </article>
  15. {% endblock content %}