diff options
author | Martin Ashby <martin@ashbysoft.com> | 2024-12-21 22:18:18 +0000 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2024-12-21 22:18:18 +0000 |
commit | 82e7ac75954c973a5c59a02684788c0fb26e14dd (patch) | |
tree | a1b09939f30bc4c232e69f980c2a47e48625ee1d /layouts/rss.xml | |
parent | ff323f79e03174e4cdf2a709c095ff83e7ea3669 (diff) | |
download | mfashby.net-82e7ac75954c973a5c59a02684788c0fb26e14dd.tar.gz mfashby.net-82e7ac75954c973a5c59a02684788c0fb26e14dd.tar.bz2 mfashby.net-82e7ac75954c973a5c59a02684788c0fb26e14dd.tar.xz mfashby.net-82e7ac75954c973a5c59a02684788c0fb26e14dd.zip |
Bump zine 0.3.0 -> 0.8.0
Fix a lot of associated breakage
Fix broken rss.xml file as highlighted to me by Matthijs van der Wild
(thanks!)
Diffstat (limited to 'layouts/rss.xml')
-rw-r--r-- | layouts/rss.xml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/layouts/rss.xml b/layouts/rss.xml index 1023a18..838c747 100644 --- a/layouts/rss.xml +++ b/layouts/rss.xml @@ -8,13 +8,13 @@ <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 inline-loop="$page.subpages()"> - <title var="$loop.it.title"></title> - <link var="$loop.it.link()"></link> - <pubDate var="$loop.it.date.formatHTTP()"></pubDate> - <guid isPermaLink="true" var="$loop.it.link()"></guid> - <description var="$loop.it.description"></description> - <content:encoded var="$loop.it.content"></content:encoded> <!-- This doesn't work, an empty tag is emitted --> + <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>
\ No newline at end of file |