aboutsummaryrefslogtreecommitdiff
path: root/layouts/list.shtml
diff options
context:
space:
mode:
authorMartin Ashby <martin@ashbysoft.com>2024-12-21 22:18:18 +0000
committerMartin Ashby <martin@ashbysoft.com>2024-12-21 22:18:18 +0000
commit82e7ac75954c973a5c59a02684788c0fb26e14dd (patch)
treea1b09939f30bc4c232e69f980c2a47e48625ee1d /layouts/list.shtml
parentff323f79e03174e4cdf2a709c095ff83e7ea3669 (diff)
downloadmfashby.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/list.shtml')
-rw-r--r--layouts/list.shtml10
1 files changed, 5 insertions, 5 deletions
diff --git a/layouts/list.shtml b/layouts/list.shtml
index 758dc09..f48e992 100644
--- a/layouts/list.shtml
+++ b/layouts/list.shtml
@@ -1,11 +1,11 @@
<extend template="main.shtml">
<div id="main">
- <h1 var="$page.title"></h1>
- <p var="$page.content"></p>
- <ul loop="$page.subpages()">
+ <h1 :text="$page.title"></h1>
+ <p :html="$page.content()"></p>
+ <ul :loop="$page.subpages()">
<li>
- <span class="date" var="$loop.it.date.format('2006/01/02')"></span>
- <a href="$loop.it.link()" var="$loop.it.title"></a>
+ <span class="date" :text="$loop.it.date.format('2006/01/02')"></span>
+ <a href="$loop.it.link()" :text="$loop.it.title"></a>
</li>
</ul>
</div> \ No newline at end of file