forked from Bunteshaus/bunteshaus.de
small fixes
This commit is contained in:
parent
fd3cc76793
commit
02c3257022
|
@ -1,5 +1,19 @@
|
|||
{{ $s := .Site.Params }}
|
||||
<section class="sidebar_inner">
|
||||
{{ if .IsSection }}
|
||||
{{ $true := false }}
|
||||
{{ range $taxonomyname, $taxonomy := where .Site.Taxonomies.categories ".Page.Section" .Section }}
|
||||
{{ if ne $taxonomyname nil }}
|
||||
{{ $true = true }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ if $true }}
|
||||
<h3 class="mt-4 taxonomy" id="categories-section">{{ T "categories" }}</h3>
|
||||
{{ range $taxonomyname, $taxonomy := where .Site.Taxonomies.categories ".Page.Section" .Section }}
|
||||
<li style="list-style: none;"><a href="{{ "categories/" | relLangURL}}{{ $taxonomyname | urlize }}">{{ $taxonomyname | humanize }}</a></li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
<div id="nav-posts">
|
||||
{{- $posts := where .Site.RegularPages "Type" "in" $s.mainSections }}
|
||||
{{- $featured := default 8 $s.numberOfFeaturedPosts }}
|
||||
|
@ -19,20 +33,6 @@
|
|||
|
||||
</div>
|
||||
|
||||
{{ if .IsSection }}
|
||||
{{ $true := false }}
|
||||
{{ range $taxonomyname, $taxonomy := where .Site.Taxonomies.categories ".Page.Section" .Section }}
|
||||
{{ if ne $taxonomyname nil }}
|
||||
{{ $true = true }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ if $true }}
|
||||
<h3 class="mt-4 taxonomy" id="categories-section">{{ T "categories" }}</h3>
|
||||
{{ range $taxonomyname, $taxonomy := where .Site.Taxonomies.categories ".Page.Section" .Section }}
|
||||
<li style="list-style: none;"><a href="{{ "categories/" | relLangURL}}{{ $taxonomyname | urlize }}">{{ $taxonomyname | humanize }}</a></li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user