bootstrap/site/layouts/_default/baseof.html

21 lines
352 B
HTML
Raw Normal View History

2020-09-06 05:30:58 +00:00
<!doctype html>
<html lang="en">
<head>
{{ partial "header" . }}
</head>
{{ block "body_override" . }}<body>{{ end }}
{{ partial "skippy" . }}
{{ partial "docs-navbar" . }}
{{ block "main" . }}
{{ end }}
{{ partial "footer" . }}
{{ partial "scripts" . }}
{{ block "footer" . }}
{{ end }}
</body>
</html>