bidet / internal / handlers / templates / base.tmpl

@ baa98b437d0ac48122258247605f2dc092f075e8 | 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}}