bidet / internal / handlers / templates / base.tmpl

@ 547c21bbb8ed4279f4bbd6b96bf5b8c64c8313bc | history


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