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

1234567891011121314151617181920212223242526
  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. <main>
  23. {{ cache.content }}
  24. </main>
  25. </article>
  26. {% endblock content %}