forked from clermontech/planet
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathatom.xml
More file actions
22 lines (22 loc) · 866 Bytes
/
atom.xml
File metadata and controls
22 lines (22 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
---
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="fr">
<title>{{ site.title }}</title>
<link href="{{ site.base_url }}/atom.xml" rel="self" type="application/atom+xml"/>
<link href="{{ site.base_url }}" rel="alternate" type="text/html"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>{{ site.base_url }}/</id>
<author>
<name>{{ site.meta.default_author }}</name>
<email>{{ site.meta.email }}</email>
</author>
{% for event in site.posts %}
<entry>
<title>{{ event.title }}</title>
<updated>{{ event.date | date_to_xmlschema }}</updated>
<id>{{ site.base_url }}{{ event.id }}</id>
<link href="{{ site.base_url }}{{ event.id }}" />
<content type="html">{{ event.description | markdownify | xml_escape }}</content>
</entry>
{% endfor %}
</feed>