0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00
Bootstrap/site/layouts/_default/home.html
Mark Otto 538f50be5a
Home imports (#37318)
* 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
2022-10-22 16:51:44 -04:00

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 }}