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 1.0KB

1234567891011121314151617181920212223242526272829
  1. {% extends "base_2020.html" %}
  2. {% block lang %}{% if cache.language %}{{ cache.language[:2] }}{% endif %}{% endblock lang %}
  3. {% block title %}{{ cache.title }} (archive){% endblock %}
  4. {% block description %}Publication mise en cache pour en conserver une trace.{% endblock %}
  5. {% block extra_head %}
  6. <meta name="robots" content="noindex, nofollow">
  7. <meta content="origin-when-cross-origin" name="referrer">
  8. <!-- Canonical URL for SEO purposes -->
  9. <link rel="canonical" href="{{ cache.url }}">
  10. {% endblock %}
  11. {% block content %}
  12. <article>
  13. <header>
  14. <h1>{{ cache.title }}</h1>
  15. </header>
  16. <nav>
  17. <p class="center">
  18. <a href="/david/" title="Aller à l’accueil"><svg class="icon icon-home">
  19. <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-home"></use>
  20. </svg> Accueil</a> •
  21. <a href="{{ cache.url }}" title="Lien vers le contenu original">Source originale</a>
  22. <br>
  23. Mis en cache le {{ cache.archive_date }}
  24. </p>
  25. </nav>
  26. <hr>
  27. {{ cache.content }}
  28. </article>
  29. {% endblock content %}