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.

profil.html 816B

12345678910111213141516171819202122232425262728293031323334353637
  1. {% extends "base_2020.html" %}
  2. {% block lang %}fr{% endblock %}
  3. {% block title %}Accueil{% endblock %}
  4. {% block content %}
  5. <article>
  6. <h1>Bienvenue</h1>
  7. <p>
  8. Voici l’espace personnel de David Larlet sur le Web.
  9. Il se veut modeste, accueillant et pérenne.
  10. Il fixe mes pensées et parfois engage des échanges.
  11. Je vous souhaite une jolie promenade.
  12. </p>
  13. <p lang="en">
  14. <em>
  15. For an English profile, check out <a href="http://larlet.com">this page</a>.
  16. </em>
  17. </p>
  18. <h2>Publication récentes</h2>
  19. {% for page in page_list %}
  20. <ul>
  21. <li><a href="{{ page.url }}">{{ page.title }}</a></li>
  22. </ul>
  23. {% endfor %}
  24. <h2>Publications anciennes</h2>
  25. <ul>
  26. <li><a href="/david/blog/">Blog</a> (2004-2019)</li>
  27. <li><a href="/david/stream/">Stream</a> (2009-2019)</li>
  28. </ul>
  29. </article>
  30. {% endblock content %}