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.

feed.xml 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <feed xmlns="http://www.w3.org/2005/Atom">
  3. <title>David Larlet</title>
  4. <subtitle>Dernières mises à jour du site</subtitle>
  5. <link href="{{ BASE_URL }}" rel="alternate" type="text/html" />
  6. <link href="{{ BASE_URL }}log/" rel="self" />
  7. <id>{{ BASE_URL }}</id>
  8. <updated>{{ current_dt }}</updated>
  9. <author>
  10. <name>David Larlet</name>
  11. <uri>{{ BASE_URL }}</uri>
  12. </author>
  13. <rights>Copyright (c) 2004-2020, David Larlet</rights>
  14. {% for page in page_list %}
  15. <entry xml:lang="{{ page.lang }}">
  16. <title>{{ page.escaped_title }}</title>
  17. <link href="{{ page.full_url }}" rel="alternate" type="text/html" />
  18. <updated>{{ page.normalized_date }}</updated>
  19. <id>{{ page.full_url }}</id>
  20. <summary type="html">{{ page.escaped_content }}</summary>
  21. </entry>
  22. {% endfor %}
  23. {% for post in post_list %}
  24. <entry xml:lang="{{ post.lang }}">
  25. <title>★ {{ post.escaped_title }}</title>
  26. <link href="{{ post.full_url }}" rel="alternate" type="text/html" />
  27. <updated>{{ post.normalized_date }}</updated>
  28. <id>{{ post.full_url }}</id>
  29. <summary type="html">{{ post.escaped_content }}</summary>
  30. </entry>
  31. {% endfor %}
  32. {% for note in note_list %}
  33. <entry xml:lang="fr">
  34. <title>☕︎ {{ note.escaped_title }}</title>
  35. <link href="{{ note.full_url }}" rel="alternate" type="text/html" />
  36. <updated>{{ note.normalized_date }}</updated>
  37. <id>{{ note.full_url }}</id>
  38. <summary type="html">{{ note.escaped_content }}</summary>
  39. </entry>
  40. {% endfor %}
  41. </feed>