-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.xml
More file actions
40 lines (37 loc) · 1.15 KB
/
index.xml
File metadata and controls
40 lines (37 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
layout: nil
---
<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Schizologues</title>
<link href="http://blog.menant-benjamin.fr/"/>
<link type="application/atom+xml" rel="self" href="http://blog.menant-benjamin.fr/index.xml"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>http://blog.menant-benjamin.fr/</id>
<author>
<name>Benjamin MENANT</name>
<email>trop-de-spam@this-is-not-a-real-mail.sorry</email>
</author>
{% for post in site.posts %}
{% if post.standalone == null %}
<entry>
<id>http://blog.menant-benjamin.fr{{ post.id }}/</id>
<link type="text/html" rel="alternate" href="http://blog.menant-benjamin.fr{{ post.url }}"/>
<title>{{ post.title }}</title>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<author>
<name>Benjamin MENANT</name>
<uri>http://menant-benjamin.fr/</uri>
</author>
<content type="html">
{% if post.argument %}
<p><i>
{{ post.argument | xml_escape }}
</i></p>
{% endif %}
{{ post.content | xml_escape }}
</content>
</entry>
{% endif %}
{% endfor %}
</feed>