0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/site/layouts/_default/baseof.html

21 lines
352 B
HTML
Raw Normal View History

2020-09-06 07:30:58 +02: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>