bidet / templates / base.tmpl

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