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_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 %}