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> 15 <header> 16 {{ block "topbar" . }} 17 {{ template "layouts/topbar" . }} 18 {{ end }} 19 </header> 20 <div class="container mx-auto px-10"> 21 <main class="content">{{ block "content" . }}{{ end }}</main> 22 <script src="/static/lucide.min.js"></script> 23 <script> 24 lucide.createIcons(); 25 </script> 26 </div> 27 </body> 28 </html> 29{{ end }}