This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/feed.xml

34 lines
1.3 KiB
XML
Raw Normal View History

2018-03-03 12:24:31 +00:00
---
2019-03-06 21:24:33 +00:00
permalink: /feed
2018-03-03 12:24:31 +00:00
use: [posts]
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title><![CDATA[{{ site.title }}]]></title>
<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>
2018-05-06 10:31:45 +00:00
{% if post.summary %}
<content type="html"><![CDATA[{{ post.summary|markdown }}]]></content>
{% elseif post.blocks.excerpt %}
2018-03-11 20:05:50 +00:00
<content type="html"><![CDATA[{{ post.blocks.excerpt|markdown }}]]></content>
2018-03-03 12:24:31 +00:00
{% else %}
2018-03-11 20:05:50 +00:00
<content type="html"><![CDATA[{{ post.blocks.content|markdown }}]]></content>
2018-03-03 12:24:31 +00:00
{% endif %}
</entry>
{% endfor %}
</feed>