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.

blogroll.html 1.2KB

123456789101112131415161718192021222324252627282930313233343536
  1. {% extends "base_2020.html" %}
  2. {% block lang %}fr{% endblock %}
  3. {% block title %}Blogroll{% endblock %}
  4. {% block description %}Les sites des ami·es.{% endblock %}
  5. {% block content %}
  6. <article>
  7. <header>
  8. <h1>Blogroll : les sites des ami·es</h1>
  9. </header>
  10. <p>Pour ne pas être totalement auto-centré, voici quelques portes ouvertes vers le Web que j’aime.</p>
  11. <nav>
  12. <ul>
  13. {% for website in website_list -%}
  14. <li>
  15. <a href="{{ website.url }}">{{ website.name }}</a>
  16. (<a href="{{ website.feed }}">flux</a>)
  17. </li>
  18. {% endfor %}
  19. </ul>
  20. </nav>
  21. <p>N’hésitez pas à me contacter si vous ne souhaitez pas figurer dans cette liste.</p>
  22. <h2>Leurs dernières publications</h2>
  23. {% for entry in entry_list -%}
  24. <dl>
  25. <dt>
  26. <a href="{{ entry.link }}">{{ entry.title }}</a>,
  27. {{ entry.date_parsed|format_struct_time }}
  28. </dt>
  29. <dd>
  30. {{ entry.summary|striptags|truncate(400, killwords=False, end="…") }}
  31. — <a href="{{ entry.website.url }}">{{ entry.website.name }}</a>
  32. </dd>
  33. </dl>
  34. {% endfor %}
  35. </article>
  36. {% endblock content %}