2015-03-02 21:06:05 +01:00
|
|
|
---
|
|
|
|
layout: null
|
|
|
|
---
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
|
|
<channel>
|
2020-04-24 01:18:23 +02:00
|
|
|
{% if site.title %}
|
2015-03-03 10:03:01 +01:00
|
|
|
<title>{{ site.title | xml_escape }}</title>
|
2020-04-24 01:18:23 +02:00
|
|
|
{% endif %}
|
2020-08-23 09:09:44 +02:00
|
|
|
{% if site.rss-description %}
|
|
|
|
<description>{{ site.rss-description | xml_escape }}</description>
|
2020-04-24 01:18:23 +02:00
|
|
|
{% endif %}
|
2019-06-21 09:48:52 +02:00
|
|
|
<link>{{ '' | absolute_url }}</link>
|
|
|
|
<atom:link href="{{ 'feed.xml' | absolute_url }}" rel="self" type="application/rss+xml" />
|
2020-09-12 08:08:43 +02:00
|
|
|
{% assign excerpt_length = site.excerpt_length | default: 50 %}
|
2015-03-15 22:20:10 +01:00
|
|
|
{% for post in site.posts limit:20 %}
|
2015-03-02 21:06:05 +01:00
|
|
|
<item>
|
|
|
|
<title>{{ post.title | xml_escape }}</title>
|
2015-03-15 22:20:10 +01:00
|
|
|
<description>
|
|
|
|
{% if post.subtitle %}{{ post.subtitle | xml_escape }} - {% endif %}
|
2020-08-23 09:09:44 +02:00
|
|
|
{{ post.content | strip_html | xml_escape | truncatewords: excerpt_length }}
|
2015-03-15 22:20:10 +01:00
|
|
|
</description>
|
2015-03-02 21:06:05 +01:00
|
|
|
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
|
2019-06-21 09:48:52 +02:00
|
|
|
<link>{{ post.url | absolute_url }}</link>
|
|
|
|
<guid isPermaLink="true">{{ post.url | absolute_url }}</guid>
|
2015-03-02 21:06:05 +01:00
|
|
|
</item>
|
|
|
|
{% endfor %}
|
|
|
|
</channel>
|
2015-03-15 22:20:10 +01:00
|
|
|
</rss>
|