forked from crtr0/seattlehacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rss.xml
25 lines (23 loc) · 992 Bytes
/
rss.xml
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
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>{{ site.meta.site_title }}</title>
<link>{{ site.meta.absolute_baseurl }}</link>
<description>{{ site.meta.site_subtitle }}</description>
<managingEditor>{{ site.meta.author.email }} ({{ site.meta.author.full_name }})</managingEditor>
<lastBuildDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S %z" }}</lastBuildDate>
<language>{{ site.meta.site_language }}</language>
{% for post in site.posts limit:15 %}
<item>
<title>{{ post.title | xml_escape }}</title>
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
<description>{{ post.content | xml_escape }}</description>
<link>{{ site.meta.absolute_baseurl }}{{ post.url }}</link>
<guid>{{ site.meta.absolute_baseurl }}{{ post.url }}</guid>
</item>
{% endfor %}
</channel>
</rss>