2018-01-16 22:08:47 -05:00
|
|
|
---
|
2018-01-25 22:02:35 -05:00
|
|
|
permalink: feed/feed.xml
|
2018-01-16 22:08:47 -05:00
|
|
|
---
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
|
|
<title>{{ metadata.title }}</title>
|
2018-01-22 09:17:48 -05:00
|
|
|
<subtitle>{{ metadata.feed.subtitle }}</subtitle>
|
|
|
|
<link href="{{ metadata.feed.url }}" rel="self"/>
|
2018-01-16 22:08:47 -05:00
|
|
|
<link href="{{ metadata.url }}"/>
|
2018-01-22 23:53:46 -05:00
|
|
|
<updated>{{ collections.posts | rssLastUpdatedDate }}</updated>
|
2018-01-22 09:17:48 -05:00
|
|
|
<id>{{ metadata.feed.id }}</id>
|
2018-01-16 22:08:47 -05:00
|
|
|
<author>
|
|
|
|
<name>{{ metadata.author.name }}</name>
|
|
|
|
<email>{{ metadata.author.email }}</email>
|
|
|
|
</author>
|
2018-01-22 23:53:46 -05:00
|
|
|
{% for post in collections.posts %}
|
2018-01-16 22:08:47 -05:00
|
|
|
<entry>
|
|
|
|
<title>{{ post.data.title }}</title>
|
2018-01-27 22:08:43 -05:00
|
|
|
<link href="{{ post.url | absoluteUrl(metadata.url) }}"/>
|
2018-01-16 22:08:47 -05:00
|
|
|
<updated>{{ post.date | rssDate }}</updated>
|
2018-01-27 22:08:43 -05:00
|
|
|
<id>{{ post.url | absoluteUrl(metadata.url) }}</id>
|
|
|
|
<content type="html">{{ post.templateContent | htmlToAbsoluteUrls(metadata.url) }}</content>
|
2018-01-16 22:08:47 -05:00
|
|
|
</entry>
|
|
|
|
{% endfor %}
|
|
|
|
</feed>
|