mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01:00
52 lines
1.5 KiB
HTML
52 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
{{ partial "header" . }}
|
|
</head>
|
|
<body>
|
|
{{ partial "skippy" . }}
|
|
|
|
{{ partial "docs-navbar" . }}
|
|
{{ partial "docs-subnav" . }}
|
|
|
|
<div class="container my-4">
|
|
<div class="row flex-xl-nowrap">
|
|
<div class="col-md-3 bd-sidebar">
|
|
{{ partial "docs-sidebar" . }}
|
|
</div>
|
|
|
|
<main class="col-md-9 py-md-3 pl-md-5 bd-content" role="main">
|
|
<h1 class="bd-title" id="content">{{ .Title | markdownify }}</h1>
|
|
<p class="bd-lead">{{ .Page.Params.Description | markdownify }}</p>
|
|
{{ partial "ads" . }}
|
|
|
|
{{ if .Page.Params.sections }}
|
|
<div class="row my-5">
|
|
{{ range .Page.Params.sections }}
|
|
<div class="col-md-6 mb-4">
|
|
<a class="d-block text-decoration-none" href="../{{ urlize .title }}/">
|
|
<strong class="d-block h5 mb-0">{{ .title }}</strong>
|
|
<span class="text-secondary">{{ .description }}</span>
|
|
</a>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ if (eq .Page.Params.toc true) }}
|
|
<strong class="d-block h3 mt-5 mb-3">On this page</strong>
|
|
<nav class="bd-toc mb-5" aria-label="Secondary navigation">
|
|
{{ .TableOfContents }}
|
|
</nav>
|
|
{{ end }}
|
|
|
|
{{ .Content }}
|
|
</main>
|
|
</div>
|
|
</div>
|
|
|
|
{{ partial "footer" . }}
|
|
{{ partial "scripts" . }}
|
|
</body>
|
|
</html>
|