xmitter-11ty/feed/feed.njk
Zach Leatherman 119dcbaf5a Fixes #6
2018-01-27 21:08:43 -06:00

25 lines
867 B
Plaintext

---
permalink: feed/feed.xml
---
<?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"/>
<link href="{{ metadata.url }}"/>
<updated>{{ collections.posts | rssLastUpdatedDate }}</updated>
<id>{{ metadata.feed.id }}</id>
<author>
<name>{{ metadata.author.name }}</name>
<email>{{ metadata.author.email }}</email>
</author>
{% for post in collections.posts %}
<entry>
<title>{{ post.data.title }}</title>
<link href="{{ post.url | absoluteUrl(metadata.url) }}"/>
<updated>{{ post.date | rssDate }}</updated>
<id>{{ post.url | absoluteUrl(metadata.url) }}</id>
<content type="html">{{ post.templateContent | htmlToAbsoluteUrls(metadata.url) }}</content>
</entry>
{% endfor %}
</feed>