-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrss.xml.html
More file actions
25 lines (25 loc) · 1.08 KB
/
rss.xml.html
File metadata and controls
25 lines (25 loc) · 1.08 KB
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>Stillness.Digital | A Place To Rest</title>
<description>A website built just for you, which expects nothing of your time. Breathe freely, old friend.</description>
<pubDate>Wed, 27 Apr 2022 12:29:36 EDT</pubDate>
<link>https://stillness.digital/</link>
<atom:link href="https://stillness.digital/rss.xml" rel="self" type="application/rss+xml" />
<image>
<link>https://stillness.digital/</link>
<url>https://stillness.digital/meta/favicon-32x32.png</url>
<title>Stillness.Digital | A Place To Rest</title>
</image>
{% for post in collections.posts | reverse %}
<item>
<title>{{ post.date | timezonedDate(post.data.gps) }}</title>
<description><![CDATA[{{ post.templateContent | nl2br | safe }}]]></description>
<pubDate>{{ post.date.toISOString() }}</pubDate>
<guid isPermaLink="false">{{ post.date.toISOString() }}</guid>
</item>
{% endfor %}
</channel>
</rss>