blob: 838c7479c5a6eacc6f43fa8c1e9ba26cad6f2c5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<rss version="2.0"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>Home on mfashby.net</title>
<link>https://mfashby.net/</link>
<description>Recent content in Home on mfashby.net</description>
<language>en-gb</language>
<lastBuildDate>Sun, 03 Mar 2024 19:31:27 +0000</lastBuildDate>
<atom:link href="https://mfashby.net/index.xml" rel="self" type="application/rss+xml"/>
<item :loop="$page.subpages()">
<title :text="$loop.it.title"></title>
<link :text="$loop.it.link()"></link>
<pubDate :text="$loop.it.date.formatHTTP()"></pubDate>
<guid isPermaLink="true" :text="$loop.it.link()"></guid>
<description :text="$loop.it.description"></description>
<!-- <content:encoded :html="$loop.it.content()"></content:encoded> It doesn't work -->
</item>
</channel>
</rss>
|