11ty-theme/src/rss.html

28 lines
1,007 B
HTML

---
permalink: '/{{ site.feed }}'
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{% if title %}{{ title }}{% else %}{{ site.title }}{% endif %}</title>
<subtitle>{% if summary %}{{ summary }}{% else %}{{ site.description }}{% endif %}</subtitle>
<link href="{{ site.url }}{{ permalink }}" rel="self"/>
<link href="{{ site.url }}/"/>
<updated>{{ collections.blog | rssLastUpdatedDate }}</updated>
<id>{{ site.url }}</id>
<author>
<name>{{ site.author.name }}</name>
<email>{{ site.author.mail }}</email>
</author>
{% for post in collections.blog %}
{% set absolutePostUrl %}{{ site.url }}{{ post.url | url }}{% endset %}
<entry>
<title>{{ post.data.title }}</title>
<link href="{{ absolutePostUrl }}"/>
<updated>{{ post.date | rssDate }}</updated>
<id>{{ absolutePostUrl }}</id>
<content type="html"><![CDATA[
{{ post.templateContent | safe }}
]]></content>
</entry>
{% endfor %}
</feed>