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

12345678910111213141516171819202122232425262728
  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"><svg class="icon icon-home">
  18. <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-home"></use>
  19. </svg> Accueil</a> •
  20. <a href="{{ cache.url }}" title="Lien vers le contenu original">Source originale</a>
  21. <br>
  22. Mis en cache le {{ cache.archive_date }}
  23. </p>
  24. </nav>
  25. <hr>
  26. {{ cache.content }}
  27. </article>
  28. {% endblock content %}