2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-21 13:24:08 +03:00
Files
bootstrap/site/layouts/_default/baseof.html
T
2022-04-28 14:33:54 -07:00

22 lines
399 B
HTML

<!doctype html>
<html lang="en" data-theme="light">
<head>
{{ partial "header" . }}
</head>
{{ block "body_override" . }}<body>{{ end }}
{{ partial "skippy" . }}
{{ partial "icons" . }}
{{ partial "docs-navbar" . }}
{{ block "main" . }}
{{ end }}
{{ partial "footer" . }}
{{ partial "scripts" . }}
{{ block "footer" . }}
{{ end }}
</body>
</html>