2017-09-02 17:42:39 -07:00
|
|
|
---
|
|
|
|
|
layout: none
|
|
|
|
|
---
|
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
|
|
|
<channel>
|
2017-09-03 13:03:30 -07:00
|
|
|
<title>{{ site.title | xml_escape }}</title>
|
2017-09-02 17:42:39 -07:00
|
|
|
<description>{{ site.description | xml_escape }}</description>
|
2017-09-03 13:03:30 -07:00
|
|
|
<link>{{site.url}}{{site.baseurl}}</link>
|
|
|
|
|
<atom:link href="{{site.url}}{{site.baseurl}}/feed.xml" rel="self" type="application/rss+xml" />
|
2017-09-02 17:42:39 -07:00
|
|
|
{% for part in site.parts limit:10 %}
|
|
|
|
|
<item>
|
|
|
|
|
<title>{{ part.title | xml_escape }}</title>
|
|
|
|
|
<description>{{ part.content | xml_escape }}</description>
|
|
|
|
|
<pubDate>{{ part.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
|
2017-09-02 17:49:45 -07:00
|
|
|
<link>{{site.url}}{{site.baseurl}}{{part.url}}</link>
|
|
|
|
|
<guid isPermaLink="true">{{site.url}}{{site.baseurl}}{{part.url}}</guid>
|
2017-09-02 17:42:39 -07:00
|
|
|
</item>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</channel>
|
|
|
|
|
</rss>
|