mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-23 20:54:22 +01:00
22 lines
431 B
HTML
22 lines
431 B
HTML
<!doctype html>
|
|
<html lang="{{ site.Language.LanguageCode }}" data-bs-theme="auto">
|
|
<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>
|