mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01:00
538f50be5a
* Update docs homepage to use separate partials for each section Also modifies the homepage code snippets under getting started to remove the code comments, making copy-pasting easier. * Update some copy and examples * newlines * type button * more code review, bring back interactive components * fix hover
17 lines
455 B
HTML
17 lines
455 B
HTML
{{ define "main" }}
|
|
<main>
|
|
{{ partial "home/masthead" . }}
|
|
<div class="container-xxl bd-gutter masthead-followup">
|
|
{{ partial "home/get-started" . }}
|
|
{{ partial "home/customize" . }}
|
|
{{ partial "home/css-variables" . }}
|
|
{{ partial "home/components-utilities" . }}
|
|
{{ partial "home/plugins" . }}
|
|
{{ partial "home/icons" . }}
|
|
{{ partial "home/themes" . }}
|
|
</div>
|
|
</main>
|
|
|
|
{{ .Content }}
|
|
{{ end }}
|