bidet / internal / handlers / templates / base.tmpl

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