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 name="viewport" content="width=device-width, initial-scale=1.0" />
7 <script
8 src="https://unpkg.com/htmx.org@2.0.4"
9 integrity="sha384-HGfztofotfshcF7+8n44JQL2oJmowVChPTg48S+jvZoztPfvwD79OC/LTtG6dMp+"
10 crossorigin="anonymous"
11 ></script>
12 <title>{{block "title" .}}{{end}}</title>
13 </head>
14 <body>
15 <main class="content">{{block "content" .}}{{end}}</main>
16 </body>
17</html>
18{{ end }}