blob: b50e1c78f9b6a2381dad271475b47258295fed69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
---
layout: none
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{{ site.title | xml_escape }}</title>
<link href="{{ site.url | append: site.baseurl | append: '/atom.xml' }}"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>{{ site.url | append: site.baseurl | append: '/atom.xml' }}</id>
<author>
<name>{{ site.author.name }}</name>
</author>
{% for post in site.posts limit:10 %}
<entry>
<title>{{ post.title | xml_escape }}</title>
<link href="{{ post.url | prepend: site.baseurl | prepend: site.url }}"/>
<id>{{ post.id }}</id>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<summary>{{ post.content | xml_escape }}</summary>
</entry>
{% endfor %}
</feed>
|