mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-14 02:24:00 +01:00
b46f05a948
This commit includes all the needed workarounds and most changes from the main branch for everything to work, like: * removing empty lines in raw HTML that break output * read .browserslistrc, CSS variables from disk instead of duplicating it * using Hugo mounts * using Hugo for the docs CSS/JS * move ToC Sass code to a separate file while adapting it for Hugo Thus, this patch makes our npm scripts faster since lint runs on one step and there's no separate docs assets processing.
46 lines
1.9 KiB
HTML
46 lines
1.9 KiB
HTML
<form role="search" class="bd-search d-flex align-items-center">
|
|
<input type="search" class="form-control" id="search-input" placeholder="Search..." aria-label="Search for..." autocomplete="off" data-docs-version="{{ .Site.Params.docs_version }}">
|
|
<button class="btn bd-search-docs-toggle d-md-none p-0 ml-3" type="button" data-toggle="collapse" data-target="#bd-docs-nav" aria-controls="bd-docs-nav" aria-expanded="false" aria-label="Toggle docs navigation">
|
|
{{ partial "icons/menu.svg" (dict "width" "30" "height" "30") }}
|
|
</button>
|
|
</form>
|
|
|
|
<div class="collapse d-md-block row" id="bd-docs-nav">
|
|
<nav class="bd-links" aria-label="Main navigation">
|
|
{{- $url := split .Permalink "/" -}}
|
|
{{- $page_slug := index $url (sub (len $url) 2) -}}
|
|
|
|
{{- range $group := .Site.Data.sidebar -}}
|
|
{{- $link := $group.title -}}
|
|
{{- $link_slug := $link | urlize -}}
|
|
|
|
{{- if $group.pages -}}
|
|
{{- $link = index $group.pages 0 -}}
|
|
{{- $link_slug = $link.title | urlize -}}
|
|
{{- end -}}
|
|
|
|
{{- $group_slug := $group.title | urlize -}}
|
|
{{- $is_active_group := eq $.Page.Params.group $group_slug }}
|
|
|
|
<div class="bd-toc-item{{ if $is_active_group }} active{{ end }}">
|
|
<a class="bd-toc-link" href="/docs/{{ $.Site.Params.docs_version }}/{{ $group_slug }}/{{ if $group.pages }}{{ $link_slug }}/{{ end }}">
|
|
{{ $group.title }}
|
|
</a>
|
|
|
|
{{- if and $is_active_group $group.pages }}
|
|
<ul class="nav bd-sidenav">
|
|
{{- range $doc := $group.pages -}}
|
|
{{- $doc_slug := $doc.title | urlize }}
|
|
<li{{ if and $is_active_group (eq $page_slug $doc_slug) }} class="active bd-sidenav-active"{{ end }}>
|
|
<a href="/docs/{{ $.Site.Params.docs_version }}/{{ $group_slug }}/{{ $doc_slug }}/">
|
|
{{- $doc.title -}}
|
|
</a>
|
|
</li>
|
|
{{- end }}
|
|
</ul>
|
|
{{- end }}
|
|
</div>
|
|
{{- end }}
|
|
</nav>
|
|
</div>
|