refactors the layouts
This commit is contained in:
parent
cefd39e9a1
commit
05d11325ea
28 changed files with 394 additions and 116 deletions
|
@ -1,22 +1,26 @@
|
|||
<div>
|
||||
<ul class="sidebar-nav">
|
||||
{{ $currentPage := . }}
|
||||
{{- range .Site.Menus.main -}}
|
||||
{{ $currentPage := . }}
|
||||
{{- range .Site.Menus.main -}}
|
||||
{{ if .HasChildren -}}
|
||||
<li class="{{ if $currentPage.HasMenuCurrent "main" . }}active{{ end }}">
|
||||
<a href="#">{{ .Pre }}<span>{{ .Name }}</span></a>
|
||||
<li {{ if $currentPage.HasMenuCurrent "main" . }}class="active"{{ end }}>
|
||||
<a href="#">{{ .Pre }}
|
||||
<span>{{ .Name }}</span>
|
||||
</a>
|
||||
<ul class="sidebar-nav">
|
||||
{{- range .Children -}}
|
||||
<li class="{{ if $currentPage.IsMenuCurrent "main" . }}active{{ end }}">
|
||||
<a href="{{ .URL }}">{{ .Name | title }}</a>
|
||||
</li>
|
||||
<li {{ if $currentPage.IsMenuCurrent "main" . }}class="active"{{ end }}>
|
||||
<a href="{{ .URL }}">{{ .Name | title }}</a>
|
||||
</li>
|
||||
{{- end -}}
|
||||
</ul>
|
||||
{{- else -}}
|
||||
{{- else -}} <!-- No children -->
|
||||
<li>
|
||||
<a href="{{.URL}}">{{ .Pre }} <span>{{ .Name | title }}</span></a>
|
||||
<a href="{{.URL}}">{{ .Pre }}
|
||||
<span>{{ .Name | title }}</span>
|
||||
</a>
|
||||
</li>
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
{{- end }}
|
||||
</li>
|
||||
</ul>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue