15eed6caff254e49ea9a8f51e8d90c22fb4de531
[jpf-core.git] / docs / atom.xml
1 ---
2 layout: null
3 ---
4
5 <?xml version="1.0" encoding="utf-8"?>
6 <feed xmlns="http://www.w3.org/2005/Atom">
7
8  <title>{{ site.title }}</title>
9  <link href="{{ site.url }}{{ site.baseurl }}/atom.xml" rel="self"/>
10  <link href="{{ site.url }}{{ site.baseurl }}/"/>
11  <updated>{{ site.time | date_to_xmlschema }}</updated>
12  <id>{{ site.url }}</id>
13  <author>
14    <name>{{ site.author.name }}</name>
15    <email>{{ site.author.email }}</email>
16  </author>
17
18  {% for post in site.posts %}
19  <entry>
20    <title>{{ post.title }}</title>
21    <link href="{{ site.url }}{{ post.url }}"/>
22    <updated>{{ post.date | date_to_xmlschema }}</updated>
23    <id>{{ site.url }}{{ site.baseurl }}{{ post.id }}</id>
24    <content type="html">{{ post.content | xml_escape }}</content>
25  </entry>
26  {% endfor %}
27
28 </feed>