25 lines
878 B
XML
25 lines
878 B
XML
|
---
|
||
|
layout: nil
|
||
|
---
|
||
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
||
|
<title type="text" xml:lang="en">{{ site.title }}</title>
|
||
|
<link type="application/atom+xml" href="{{ site.url }}/feed.xml" rel="self"/>
|
||
|
<link type="text/html" href="{{ site.url }}/" rel="alternate"/>
|
||
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
||
|
<id>{{ site.url }}/feed.xml</id>
|
||
|
<author>
|
||
|
<name>{{ site.publisher.name }}</name>
|
||
|
</author>
|
||
|
<rights>Copyleft {{ site.time | date: '%Y' }} {{ site.publisher.name }}</rights>
|
||
|
|
||
|
{% for post in site.posts limit:20 %}
|
||
|
<entry>
|
||
|
<title>{{ post.title }}</title>
|
||
|
<link href="{{ site.url }}{{ post.url }}"/>
|
||
|
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
||
|
<id>home_url{{ post.id }}</id>
|
||
|
<content type="html">{{ post.content | xml_escape }}</content>
|
||
|
</entry>
|
||
|
{% endfor %}
|
||
|
</feed>
|