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 <title>{{ block "title" . }}tangled{{ end }}</title> 11 </head> 12 <body> 13 <header class="topbar"> 14 {{ block "topbar" . }} 15 {{ template "layouts/topbar" . }} 16 {{ end }} 17 </header> 18 <main class="content">{{ block "content" . }}{{ end }}</main> 19 </body> 20 </html> 21{{ end }}