You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.0 KiB
XML
31 lines
1.0 KiB
XML
11 years ago
|
---
|
||
|
layout: nil
|
||
|
---
|
||
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
||
|
|
||
|
<title type="text" xml:lang="en">{{ site.name }}</title>
|
||
|
<link type="application/atom+xml" href="{{ site.url }}{{ site.base }}/blog/blog.xml" rel="self"/>
|
||
|
<link href="{{ site.url }}{{ site.base }}/"/>
|
||
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
||
|
<id>{{ site.url }}{{ site.base }}/</id>
|
||
|
<author>
|
||
|
<name>the Sampa group</name>
|
||
|
</author>
|
||
|
|
||
|
{% for post in site.posts limit:20 %}
|
||
|
<entry>
|
||
|
{% if post.shortnews %}
|
||
|
<title>{{ post.date | date_to_long_string }}</title>
|
||
|
<link href="{{ site.url }}{{ site.base }}/blog/"/>
|
||
|
{% else %}
|
||
|
<title>{{ post.title }}</title>
|
||
|
<link href="{{ site.url }}{{ site.base }}{{ post.url }}"/>
|
||
|
{% endif %}
|
||
|
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
||
|
<id>{{ site.url }}{{ site.base }}{{ post.url }}</id>
|
||
|
<content type="html">{{ post.content | xml_escape }}</content>
|
||
|
</entry>
|
||
|
{% endfor %}
|
||
|
</feed>
|