this repo has no description
at workflows 21 lines 538 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 <h1 :text="$page.title"></h1> 7 <div :html="$page.content()"></div> 8 9 <div id="search"></div> 10 <script> 11 window.addEventListener('DOMContentLoaded', (event) => { 12 new PagefindUI({ element: "#search", showSubResults: true, openFilters: ['Tags','Type'], resetStyles: true }); 13 }); 14 </script> 15 16 <ul :loop="$page.subpages()"> 17 <li> 18 <a href="$loop.it.link()" :text="$loop.it.title"></a> 19 </li> 20 </ul> 21</main>