statping/source/tmpl/base.html

12 lines
206 B
HTML

{{ define "base" }}
<!doctype html>
<html lang="en">
{{block "head" .}} {{end}}
<body>
{{template "content" .}}
</body>
<footer>{{template "footer" .}}</footer>
{{template "scripts" .}}
</html>
{{end}}