A place to cache linked articles (think custom and personal wayback machine)
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

cache_article.html 774B

123456789101112131415161718192021222324
  1. {% extends "base_2020.html" %}
  2. {% block title %}{{ cache.title }} (archive){% endblock %}
  3. {% block description %}Publication mise en cache pour en conserver une trace.{% endblock %}
  4. {% block extra_head %}
  5. <meta name="robots" content="noindex, nofollow">
  6. <meta content="origin-when-cross-origin" name="referrer">
  7. <!-- Canonical URL for SEO purposes -->
  8. <link rel="canonical" href="{{ cache.url }}">
  9. {% endblock %}
  10. {% block content %}
  11. <article>
  12. <header>
  13. <h1>{{ cache.title }}</h1>
  14. </header>
  15. <nav>
  16. <p class="center">
  17. <a href="/david/" title="Aller à l’accueil">🏠</a> •
  18. <a href="{{ cache.url }}" title="Lien vers le contenu original">Source originale</a>
  19. </p>
  20. </nav>
  21. <hr>
  22. {{ cache.content }}
  23. </article>
  24. {% endblock content %}