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