This commit is contained in:
Zach Leatherman
2018-01-27 21:08:43 -06:00
parent 963b5d46e6
commit 119dcbaf5a
6 changed files with 70 additions and 5 deletions

View File

@ -16,10 +16,10 @@ permalink: feed/feed.xml
{% for post in collections.posts %}
<entry>
<title>{{ post.data.title }}</title>
<link href="{{ metadata.url }}{{ post.url }}"/>
<link href="{{ post.url | absoluteUrl(metadata.url) }}"/>
<updated>{{ post.date | rssDate }}</updated>
<id>{{ metadata.url }}{{ post.url }}</id>
<content type="html">{{ post.templateContent }}</content>
<id>{{ post.url | absoluteUrl(metadata.url) }}</id>
<content type="html">{{ post.templateContent | htmlToAbsoluteUrls(metadata.url) }}</content>
</entry>
{% endfor %}
</feed>