-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrss.xml
More file actions
23 lines (22 loc) · 959 Bytes
/
rss.xml
File metadata and controls
23 lines (22 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
---
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:posterous="http://posterous.com/help/rss/1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>Dr. Michiel Overeem</title>
<description>Dr. Michiel Overeem</description>
<generator>Jekyll</generator>
<link href="http://www.movereem.nl/rss.xml" rel="self"/>
<link href="http://www.movereem.nl/"/>
<atom:link href="http://www.movereem.nl/rss.xml" rel="self"/>
{% for post in site.posts limit:50 %}
<item>
<title>{{ post.title | xml_escape }}</title>
<link href="http://www.movereem.nl{{ post.url }}"/>
<pubDate>{{ post.date | date_to_xmlschema }}</pubDate>
<guid>http://www.movereem.nl{{ post.id }}</guid>
<description type="html">{{ post.content | xml_escape }}</description>
</item>
{% endfor %}
</channel>
</rss>