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.

biologeek_articles.html 1.2KB

123456789101112131415161718192021222324252627282930313233343536
  1. {% extends "base.html" %}
  2. {% block title %}{{title}} — Biologeek{% endblock %}
  3. {% block extra_head %}
  4. <!-- Canonical URL for SEO purposes -->
  5. <link rel="canonical" href="https://{{ article_root }}">
  6. {% endblock %}
  7. {% block content %}
  8. <section>
  9. <h1 property="schema:name">{{title}}</h1>
  10. <article typeof="schema:BlogPosting">
  11. <div property="schema:articleBody">
  12. {{vignette_html}}
  13. {{content}}
  14. </div>
  15. </article>
  16. <footer>
  17. <h6 property="schema:datePublished">— {{date}}</h6>
  18. </footer>
  19. </section>
  20. <section>
  21. <div>
  22. <h3>Articles peut-être en rapport</h3>
  23. <ul>
  24. <li><a href="/david/biologeek/archives/{{contextual_url1}}/" title="Accès à {{contextual_title1}}">{{contextual_title1}}</a></li>
  25. <li><a href="/david/biologeek/archives/{{contextual_url2}}/" title="Accès à {{contextual_title2}}">{{contextual_title2}}</a></li>
  26. <li><a href="/david/biologeek/archives/{{contextual_url3}}/" title="Accès à {{contextual_title3}}">{{contextual_title3}}</a></li>
  27. </ul>
  28. </div>
  29. </section>
  30. <section>
  31. <div id="comments">
  32. <h3>Commentaires</h3>
  33. {{comments}}
  34. </div>
  35. </section>
  36. {% endblock content %}