this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 113eaa05ab2a261392a24ed7e5f330c032c185c9 70 lines 2.6 kB view raw
1<!DOCTYPE html> 2<html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title :text="$page.title.suffix(' | ', $site.title)"></title> 6 <link rel="stylesheet" href="$build.asset('altagos.css').link()"> 7 <!-- Meta --> 8 <meta name="viewport" content="width=device-width, initial-scale=1"> 9 <meta name="description" content="$page.description"> 10 <meta name="theme-color" content="#87a987"> 11 <!-- Favicon --> 12 <link rel="icon" type="image/png" href="$site.asset('favicon/favicon-96x96.png').link()" sizes="96x96"> 13 <link rel="icon" type="image/svg+xml" href="$site.asset('favicon/favicon.svg').link()"> 14 <link rel="shortcut icon" href="$site.asset('favicon/favicon.ico').link()"> 15 <link rel="apple-touch-icon" sizes="180x180" href="$site.asset('favicon/apple-touch-icon.png').link()"> 16 <link rel="manifest" href="$site.asset('favicon/site.webmanifest').link()"> 17 <!-- Phsophor Icons --> 18 <link rel="stylesheet" href="$site.asset('phosphor-icons/bold.css').link()"> 19 <!-- mathtex --> 20 <link rel="stylesheet" href="$site.asset('math/Temml-Local.css').link()"> 21 </head> 22 <body> 23 <header></header> 24 <div class="content"> 25 <main> 26 <h1 :text="$page.title"></h1> 27 <div :html="$page.content()"></div> 28 <ctx :if="$page.footnotes?()"> 29 <div class="footnotes"> 30 <ol :loop="$if"> 31 <li id="$loop.it.def_id"> 32 <div class="footnote"><ctx :html="$loop.it.html()"></ctx></div> 33 <ctx :loop="$loop.it.ref_ids"> 34 <div class="back"> 35 <a href="$loop.it.prefix('#')"><i class="ph-bold ph-arrow-up"></i>Back</a> 36 </div> 37 </ctx> 38 </li> 39 </ol> 40 </div> 41 </ctx> 42 </main> 43 <footer> 44 <div> 45 <h2> 46 <a href="$site.link()">Jakob Speer</a> 47 </h2> 48 <div class="socials"> 49 <ul> 50 <li> 51 <a href="https://github.com/altagos" rel="me">GitHub</a> 52 </li> 53 <li> 54 <a href="https://sr.ht/~altagos" rel="me">Sourcehut</a> 55 </li> 56 <li> 57 <a href="https://hachyderm.io/@altagos" rel="me">Mastodon</a> 58 </li> 59 </ul> 60 </div> 61 </div> 62 <div id="copyright"> 63 <p>&copy; 2025 Jakob Speer</p> 64 </div> 65 </footer> 66 </div> 67 <script defer src="$site.asset('math/temml.min.js').link()"></script> 68 <script defer src="$site.asset('math/render-mathtex.js').link()"></script> 69 </body> 70</html>