this repo has no description
1<extend template="root.shtml">
2
3<title id="title" :text="$page.title.suffix(' | ', $site.title)"></title>
4
5<main id="main">
6 <h1 :text="$page.title"></h1>
7 <h5>
8 Created on:
9 <span :text="$page.date.format('2006-01-02')">
10 </span>
11 </h5>
12 <div :html="$page.content()"></div>
13 <ctx :if="$page.footnotes?()">
14 <div class="footnotes">
15 <ol :loop="$if">
16 <li id="$loop.it.def_id">
17 <div class="footnote"><ctx :html="$loop.it.html()"></ctx></div>
18 <ctx :loop="$loop.it.ref_ids">
19 <div class="back">
20 <a href="$loop.it.prefix('#')"><i class="ph-bold ph-arrow-up"></i>Back</a>
21 </div>
22 </ctx>
23 </li>
24 </ol>
25 </div>
26 </ctx>
27</main>