bidet / internal / handlers / templates / base.tmpl

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