All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: oDinZu <info@sharpetronics.com>
33 lines
1.0 KiB
XML
33 lines
1.0 KiB
XML
---
|
|
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>
|
|
<title>{{ post.title }}</title>
|
|
<link>
|
|
{{ post.url | prepend: site.url }}
|
|
</link>
|
|
<author>{{ post.author }}</author>
|
|
<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>
|