this repo has no description
1{{ define "layouts/base" }}
2 <!doctype html>
3 <html lang="en">
4 <head>
5 <meta charset="UTF-8" />
6 <meta
7 name="viewport"
8 content="width=device-width, initial-scale=1.0"
9 />
10 <script src="/static/htmx.min.js"></script>
11 <link href="/static/tw.css" rel="stylesheet" type="text/css" />
12 <title>{{ block "title" . }}tangled{{ end }}</title>
13 </head>
14 <body class="container mx-auto px-10">
15 <header>
16 {{ block "topbar" . }}
17 {{ template "layouts/topbar" . }}
18 {{ end }}
19 </header>
20 <main class="content">{{ block "content" . }}{{ end }}</main>
21 </body>
22 </html>
23{{ end }}