statping/source/tmpl/base.html

12 lines
206 B
HTML
Raw Normal View History

2018-10-02 06:21:14 +00:00
{{ define "base" }}
<!doctype html>
<html lang="en">
2018-10-02 06:21:14 +00:00
{{block "head" .}} {{end}}
<body>
2018-10-02 06:21:14 +00:00
{{template "content" .}}
</body>
2018-10-02 06:21:14 +00:00
<footer>{{template "footer" .}}</footer>
{{template "scripts" .}}
</html>
2018-10-02 06:21:14 +00:00
{{end}}