mirror of
https://github.com/trwnh/hugo-theme-paradox.git
synced 2024-11-24 10:21:21 +00:00
fix docs menu depth collapsing
This commit is contained in:
parent
317e9651c9
commit
73d11f00b8
|
@ -10,63 +10,44 @@
|
||||||
{{ $currentPage := . }}
|
{{ $currentPage := . }}
|
||||||
{{ range .Site.Menus.docs }}
|
{{ range .Site.Menus.docs }}
|
||||||
{{ $active := or ($currentPage.IsMenuCurrent "docs" .) (eq $currentPage.Section .Identifier)}}
|
{{ $active := or ($currentPage.IsMenuCurrent "docs" .) (eq $currentPage.Section .Identifier)}}
|
||||||
|
<details class='section-title{{- if $active }} active{{ end -}}' {{- if $active }} open{{ end -}}>
|
||||||
{{ if .HasChildren }}
|
{{ if .HasChildren }}
|
||||||
<details
|
|
||||||
class='section-title
|
|
||||||
{{- if $active }} active{{ end -}}
|
|
||||||
'
|
|
||||||
{{- if $active }} open{{ end -}}>
|
|
||||||
<summary href="{{ .URL | relLangURL }}">
|
<summary href="{{ .URL | relLangURL }}">
|
||||||
{{ .Pre }}
|
{{ .Pre }}<span>{{ .Name }}</span>{{ .Post }}
|
||||||
<span>{{ .Name }}</span>
|
|
||||||
{{ .Post }}
|
|
||||||
</summary>
|
</summary>
|
||||||
<ul class="sub-menu">
|
<ul class="sub-menu" data-depth=1>
|
||||||
{{ range .Children }}
|
{{ range .Children }}
|
||||||
{{ if .HasChildren}}
|
{{ if .HasChildren}}
|
||||||
<li
|
<li class='{{- if $active }} active{{ end -}}'>
|
||||||
class='{{- if $active }} active{{ end -}}'>
|
|
||||||
<a href="{{ .URL | relLangURL }}">
|
<a href="{{ .URL | relLangURL }}">
|
||||||
{{ .Pre }}
|
{{ .Pre }}<span>{{ .Name }}</span>{{ .Post }}
|
||||||
<span>{{ .Name }}</span>
|
|
||||||
{{ .Post }}
|
|
||||||
</a>
|
</a>
|
||||||
<ul class="sub-menu">
|
<ul class="sub-menu" data-depth=2>
|
||||||
{{ range .Children }}
|
{{ range .Children }}
|
||||||
<li
|
<li class='{{- if $active }} active{{ end -}}'>
|
||||||
class='{{- if $active }} active{{ end -}}'>
|
|
||||||
<a href="{{ .URL | relLangURL }}">
|
<a href="{{ .URL | relLangURL }}">
|
||||||
{{ .Pre }}
|
{{ .Pre }}<span>{{ .Name }}</span>{{ .Post }}
|
||||||
<span>{{ .Name }}</span>
|
</a>
|
||||||
{{ .Post }}
|
</li>
|
||||||
|
{{ end }}{{/* range .Children (subsubmenu) */}}
|
||||||
|
</ul>
|
||||||
|
{{ else }}{{/* not .HasChildren (subsubmenu) */}}
|
||||||
|
<li class='{{- if $active }} active{{ end -}}'>
|
||||||
|
<a href="{{ .URL | relLangURL }}">
|
||||||
|
{{ .Pre }}<span>{{ .Name }}</span>{{ .Post }}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{{ end }}{{/* range .Children */}}
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
{{ else }}
|
||||||
|
<li class='{{- if $active }} active{{ end -}}'>
|
||||||
|
<a href="{{ .URL | relLangURL }}">
|
||||||
|
{{ .Pre }}<span>{{ .Name }}</span>{{ .Post }}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
|
||||||
</details>
|
</details>
|
||||||
{{ else }}
|
|
||||||
<li
|
|
||||||
class='{{- if $active }} active{{ end -}}'>
|
|
||||||
<a href="{{ .URL | relLangURL }}">
|
|
||||||
{{ .Pre }}
|
|
||||||
<span>{{ .Name }}</span>
|
|
||||||
{{ .Post }}
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
{{ end }}
|
|
||||||
{{ end }}
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
{{ else }}
|
|
||||||
<li
|
|
||||||
class='{{- if $active }} active{{ end -}}'>
|
|
||||||
<a href="{{ .URL | relLangURL }}">
|
|
||||||
{{ .Pre }}
|
|
||||||
<span>{{ .Name }}</span>
|
|
||||||
{{ .Post }}
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
{{ end }}
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue