bidet / templates / base.tmpl

@ e4c00fc2a01331bb0b70d8f881ce63a4d7dbccbf | history


{{define "base"}}
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>{{block "title" .}}Default{{end}}</title>
    <link rel="stylesheet" href="https://nmyk.io/style.css">
    <link rel="stylesheet" href="https://nmyk.io/doc.css">
</head>
<body>
    {{block "content" .}}{{end}}
</body>
</html>
{{end}}