aboutsummaryrefslogtreecommitdiff
path: root/layouts/rss.xml
blob: fb4a3174c55e55969ee18bc011c323d667eda776 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<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"/>
    <ctx :loop="$page.subpages()">
        <item>
        <title :text="$loop.it.title"></title>
        <link :text="$loop.it.link().prefix('https://mfashby.net')"></link>
        <pubDate :text="$loop.it.date.formatHTTP()"></pubDate>
        <guid isPermaLink="true" :text="$loop.it.link().prefix('https://mfashby.net')"></guid>
        <description :text="$loop.it.description"></description>
        <!-- <content:encoded :html="$loop.it.content()"></content:encoded> It doesn't work -->
        </item>
    </ctx>
  </channel>
</rss>