Repository with sources and generator of https://larlet.fr/david/ https://larlet.fr/david/
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 952B

123456789101112131415161718192021222324252627282930
  1. {% extends "base_2019.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. <h1>
  11. <span><a id="jumper" href="#jumpto" title="Un peu perdu ?">?</a></span>
  12. {{ cache.title }} (archive)
  13. <time>Pour la pérennité des contenus liés. Non-indexé, retrait sur simple email.</time>
  14. </h1>
  15. <section>
  16. <article>
  17. <h3><a href="{{ cache.url }}">Source originale du contenu</a></h3>
  18. {{ cache.content }}
  19. </article>
  20. </section>
  21. {% endblock content %}
  22. {% block nav %}
  23. <nav id="jumpto">
  24. <p>
  25. <a href="/david/blog/">Accueil du blog</a> |
  26. <a href="{{ cache.url }}">Source originale</a> |
  27. <a href="/david/stream/2019/">Accueil du flux</a>
  28. </p>
  29. </nav>
  30. {% endblock nav %}