Initial commit
This commit is contained in:
13
layouts/partials/sidebar/docs-menu.html
Normal file
13
layouts/partials/sidebar/docs-menu.html
Normal file
@ -0,0 +1,13 @@
|
||||
{{ $currentPage := . -}}
|
||||
{{ range .Site.Menus.docs -}}
|
||||
<h3>{{ .Name }}</h3>
|
||||
{{ if .HasChildren -}}
|
||||
<ul class="list-unstyled">
|
||||
{{ range .Children -}}
|
||||
{{- $active := or ($currentPage.IsMenuCurrent "docs" .) ($currentPage.HasMenuCurrent "docs" .) -}}
|
||||
{{- $active = or $active (eq .Name $currentPage.Title) -}}
|
||||
<li><a class="docs-link{{ if $active }} active{{ end }}" href="{{ .URL }}">{{ .Name }}</a></li>
|
||||
{{ end -}}
|
||||
</ul>
|
||||
{{ end -}}
|
||||
{{ end -}}
|
6
layouts/partials/sidebar/docs-toc.html
Normal file
6
layouts/partials/sidebar/docs-toc.html
Normal file
@ -0,0 +1,6 @@
|
||||
{{ if ne .Params.toc false -}}
|
||||
<div class="page-links">
|
||||
<h3>On this page</h3>
|
||||
{{ .TableOfContents }}
|
||||
</div>
|
||||
{{ end -}}
|
Reference in New Issue
Block a user