33 lines
1.0 KiB
XML
Raw Normal View History

2021-01-13 18:58:23 -05:00
---
layout: null
---
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>{{ site.data.global.title }}</title>
<link>{{ site.url }}</link>
<atom:link href="{{ page.url | prepend: site.url }}" rel="self" type="application/rss+xml" />
<description>{{ site.data.global.description }}</description>
<lastBuildDate>{{ site.data.global.time | date_to_rfc822 }}</lastBuildDate>
{% for post in site.posts %}
<item>
<image>{{ post.image }}</image>
2021-01-13 18:58:23 -05:00
<title>{{ post.title }}</title>
<link>
{{ post.url | prepend: site.url }}
</link>
<author>{{ post.author }}</author>
2021-01-13 18:58:23 -05:00
<description>
{{ post.content | escape | truncate: '400' }}
</description>
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
<guid>
{{ post.url | prepend: site.url }}
</guid>
</item>
{% endfor %}
</channel>
</rss>