-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrss.xml
More file actions
27 lines (25 loc) · 1023 Bytes
/
rss.xml
File metadata and controls
27 lines (25 loc) · 1023 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
26
27
---
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>
<language>{{ site.meta.site_language }}</language>
<copyright>{{ site.meta.author.full_name}}</copyright>
<managingEditor>{{ site.meta.author.email }} ({{ site.meta.author.full_name}})</managingEditor>
<lastBuildDate>{{ site.time | date_to_xmlschema }}</lastBuildDate>
{% for post in site.posts limit:50 %}
<item>
<title>{{ post.title }}</title>
<link>{{ site.meta.absolute_baseurl }}{{ post.url }}</link>
<author>{{ site.meta.author.email }} ({{ site.meta.author.full_name}})</author>
<pubdate>{{ post.date | date_to_xmlschema }}</pubdate>
<guid>{{ site.meta.absolute_baseurl }}{{ post.url }}</guid>
<description>{{ post.content | xml_escape }}</description>
</item>
{% endfor %}
</channel>
</rss>