An OIDC-protected index page for your homeserver.
1package views
2
3templ Document(title string) {
4 <html>
5 <head>
6 <title>{title} | Ladon</title>
7 <link rel="icon" type="image/svg" href="/static/favicon.svg"/>
8 <link rel="stylesheet" href="/static/styles.css"/>
9 <link rel="preconnect" href="https://fonts.googleapis.com">
10 <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
11<link href="https://fonts.googleapis.com/css2?family=Recursive:slnt,wght,CASL,CRSV,MONO@-15..0,300..1000,0..1,0..1,0..1&display=swap" rel="stylesheet"> </head>
12 <body class="bg-base text-text">
13 {children...}
14 </body>
15 </html>
16}