bidet / internal / handlers / templates / base.tmpl

@ b7e6dbf60bd696ebcd4165a0697e8cb21e2532b9 | history


{{define "base"}}
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width">
    <title>{{block "title" .}}Default{{end}}</title>
    <style>{{ css }}</style>
</head>
<body>
    {{block "content" . }}{{end}}
</body>
</html>
{{end}}