xmitter-11ty/feed/feed.njk

25 lines
812 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>
<link href="{{ metadata.url }}{{ post.url }}"/>
<updated>{{ post.date | rssDate }}</updated>
<id>{{ metadata.url }}{{ post.url }}</id>
<content type="html">{{ post.templateContent }}</content>
</entry>
{% endfor %}
</feed>