xmitter-11ty/feed/feed.njk

25 lines
867 B
Plaintext
Raw Normal View History

2018-01-16 22:08:47 -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>
<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>
<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>