A place to cache linked articles (think custom and personal wayback machine)
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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