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" .}}tangled{{end}}</title> 13 </head> 14 <body> 15 <header class="topbar"> 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 }}