oliverdavies.uk/source/rss.xml.twig

35 lines
1.3 KiB
Twig
Raw Normal View History

2021-07-19 06:30:33 +00:00
---
permalink: /rss.xml
use:
- posts
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
2021-07-20 17:28:15 +00:00
<title><![CDATA[{{ site.name }}]]></title>
2021-07-19 06:30:33 +00:00
<link href="{{ site.url }}{{ page.url }}" rel="self"/>
<link href="{{ site.url }}"/>
<updated>{{ site.calculated_date|date('c') }}</updated>
<id>{{ site.url }}/</id>
{% if site.author or site.email %}
<author>
{% if site.author %}<name><![CDATA[{{ site.author }}]]></name>{% endif %}
</author>
{% endif %}
<generator uri="http://sculpin.io/">Sculpin</generator>
{% for post in data.posts|slice(0, 10) %}
<entry>
<title type="html"><![CDATA[{{ post.title }}]]></title>
<link href="{{ site.url }}{{ post.url }}"/>
<updated>{{ post.date|date('c') }}</updated>
<id>{{ site.url }}{{ post.url }}</id>
{% if post.summary %}
<content type="html"><![CDATA[{{ post.summary|markdown }}]]></content>
{% elseif post.blocks.excerpt %}
<content type="html"><![CDATA[{{ post.blocks.excerpt|markdown }}]]></content>
{% else %}
<content type="html"><![CDATA[{{ post.blocks.content|markdown }}]]></content>
{% endif %}
</entry>
{% endfor %}
</feed>