blob: f48e9921049138b8d05da02b4b56e6abcd1cb33e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<extend template="main.shtml">
<div id="main">
<h1 :text="$page.title"></h1>
<p :html="$page.content()"></p>
<ul :loop="$page.subpages()">
<li>
<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>
|