-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrss.xml
More file actions
25 lines (24 loc) · 782 Bytes
/
rss.xml
File metadata and controls
25 lines (24 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
layout: nil
reference: davidreuss.github.com
---
<?xml version="1.0"?>
<rss version="2.0">
<channel>
<title>David Reuss Feed</title>
<link>http://{{ page.reference }}</link>
<description>David Reuss</description>
<pubDate>{{ site.time | date_to_xmlschema }}</pubDate>
<lastBuildDate>{{ site.time | date_to_xmlschema }}</lastBuildDate>
<webMaster>david@kompjuter.dk</webMaster>
{% for post in site.posts limit:10 %}
<item>
<title>{{ post.title }}</title>
<link>http://{{ page.reference }}{{ post.url }}</link>
<guid>http://{{ page.reference }}{{ post.id }}</guid>
<description>{{ post.content | xml_escape }}</description>
<pubDate>{{ post.date | date_to_xmlschema }}</pubDate>
</item>
{% endfor %}
</channel>
</rss>