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