25 lines
725 B
XML
25 lines
725 B
XML
|
---
|
||
|
layout: nil
|
||
|
---
|
||
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
||
|
<title>i3.zekjur.net/blog/</title>
|
||
|
<link href="http://i3.zekjur.net/blog/atom.xml" rel="self"/>
|
||
|
<link href="http://i3.zekjur.net/blog" />
|
||
|
<author>
|
||
|
<name>i3 developers</name>
|
||
|
</author>
|
||
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
||
|
<id>http://i3.zekjur.net/blog/</id>
|
||
|
|
||
|
{% for post in site.posts %}
|
||
|
<entry>
|
||
|
<title>{{ post.title | xml_escape }}</title>
|
||
|
<link href="{{ site.url }}{{ post.url }}"/>
|
||
|
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
||
|
<id>http://i3.zekjur.net/{{ post.id }}</id>
|
||
|
<content type="html">{{ post.content | xml_escape }}</content>
|
||
|
</entry>
|
||
|
{% endfor %}
|
||
|
</feed>
|