mfashby.net

Website mfashby.net
git clone git://code.mfashby.net:/mfashby.net
Log | Files | Refs | Submodules | README

list.shtml (314B)


      1 <extend template="main.shtml">
      2 <div id="main">
      3   <h1 :text="$page.title"></h1>
      4   <p :html="$page.content()"></p>
      5   <ul :loop="$page.subpages()">
      6     <li>
      7       <span class="date" :text="$loop.it.date.format('2006/01/02')"></span>
      8       <a href="$loop.it.link()" :text="$loop.it.title"></a>
      9     </li>
     10   </ul>
     11 </div>