2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-18 12:39:41 +03:00
Files
bootstrap/site/layouts/_default/baseof.html
T
Mark Otto b71cd6eb7d Redesign homepage docs
- New Bootstrap purple navbar
- Redesigned masthead
- Rewrote and redesigned homepage content
- Replace Copy text with icons like Bootstrap Icons site across all ClipboardJS instances
- Fixed padding issues in site footer
- Match homepage button styles to examples page, use gap instead of tons of responsive margin utils
2022-02-23 11:46:05 -08:00

22 lines
380 B
HTML

<!doctype html>
<html lang="en">
<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>