mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01:00
19 lines
348 B
HTML
19 lines
348 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
{{ partial "header" . }}
|
|
</head>
|
|
<body class="d-flex flex-column min-vh-100">
|
|
{{ partial "skippy" . }}
|
|
|
|
{{ partial "docs-navbar" . }}
|
|
|
|
<main class="my-auto p-5" id="content">
|
|
{{ .Content }}
|
|
</main>
|
|
|
|
{{ partial "footer" . }}
|
|
{{ partial "scripts" . }}
|
|
</body>
|
|
</html>
|