bidet / internal / handlers / templates / base.tmpl

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