-
Notifications
You must be signed in to change notification settings - Fork 5
/
feed.njk
28 lines (28 loc) · 999 Bytes
/
feed.njk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
permalink: "feed.xml"
eleventyExcludeFromCollections: true
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{{ seo.title }}</title>
<subtitle>{{ seo.subtitle }}</subtitle>
{% set feedUrl %}{{ 'feed.xml' | url | absoluteUrl(seo.url) }}{% endset %}
<link href="{{ feedUrl }}" rel="self"/>
<link href="{{ seo.url }}"/>
<updated>{{ collections.posts | getNewestCollectionItemDate | dateToRfc3339 }}</updated>
<id>{{ seo.url }}</id>
<author>
<name>{{ seo.author }}</name>
<email>{{ seo.authorEmail }}</email>
</author>
{%- for post in collections.posts %}
{% set absolutePostUrl %}{{ post.url | url | absoluteUrl(seo.url) }}{% endset %}
<entry>
<title>{{ post.data.title }}</title>
<link href="{{ absolutePostUrl }}"/>
<updated>{{ post.date | dateToRfc3339 }}</updated>
<id>{{ absolutePostUrl }}</id>
<content type="html">{{ post.templateContent | htmlToAbsoluteUrls(absolutePostUrl) }}</content>
</entry>
{%- endfor %}
</feed>