-
Notifications
You must be signed in to change notification settings - Fork 0
/
rss.xml.html
25 lines (25 loc) · 1.03 KB
/
rss.xml.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
permalink: rss.xml
---
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Strange.Website</title>
<description>Well now, seems you've found a strange and perhaps surprising website, indeed. As with all things, take and enjoy your time — after all, no one may but you.</description>
<link>https://strange.website/</link>
<atom:link href="https://strange.website/rss.xml" rel="self" type="application/rss+xml" />
<image>
<link>https://strange.website/</link>
<url>https://strange.website/meta/favicon-32x32.png</url>
<title>Strange.Website</title>
</image>
{% set sortedwebsites = websites | reverse %}
{% for website in sortedwebsites %}
<item>
<title>{{ website.date }}</title>
<description><![CDATA[{{ website.body | nl2br | safe }}]]></description>
<pubDate>{{ website.date | toUTCString }}</pubDate>
<guid isPermaLink="false">{{ website.date | toUTCString }}</guid>
</item>
{% endfor %}
</channel>
</rss>