mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-05-18 12:39:41 +03:00
b71cd6eb7d
- 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
22 lines
380 B
HTML
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>
|