37 lines
920 B
HTML
37 lines
920 B
HTML
{{- $ctx := . -}}
|
|
{{- $scratch := newScratch -}}
|
|
{{- $scratch.Set "blocks" 0 -}}
|
|
{{- range $taxonomy, $_ := $ctx.Site.Taxonomies -}}
|
|
{{- with $ctx.Page.GetTerms $taxonomy -}}
|
|
{{- $scratch.Add "blocks" 1 -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{- with $ctx.Params.keywords -}}
|
|
{{- if gt (len .) 0 -}}
|
|
{{- $scratch.Add "blocks" 1 -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{- if gt ($scratch.Get "blocks") 0 }}
|
|
<aside class="panel">
|
|
<details>
|
|
<summary>Taxonomies</summary>
|
|
{{- range $taxonomy, $_ := $ctx.Site.Taxonomies -}}
|
|
{{- with $ctx.Page.GetTerms $taxonomy }}
|
|
<section>
|
|
<h2>{{ humanize $taxonomy }}</h2>
|
|
{{- partial "keywords.html" . }}
|
|
</section>
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- with $ctx.Params.keywords }}
|
|
{{- if gt (len .) 0 }}
|
|
<section>
|
|
<h2>Mots-clés</h2>
|
|
{{- partial "keywords.html" . }}
|
|
</section>
|
|
{{- end }}
|
|
{{- end }}
|
|
</details>
|
|
</aside>
|
|
{{- end }}
|