itsblue-website/themes/quark-hugo/layouts/partials/modular/_dataGetter.html
2021-10-07 11:21:03 +02:00

21 lines
558 B
HTML

{{ $filteredData := slice }}
{{ with .Params.modularDataDir }}
{{ $data := index site.Data site.Language.Lang }}
{{ if isset $data . }}
{{ $data = index $data . }}
{{ range $data }}
{{ if .modularLayout }}
{{ $filteredData = ($filteredData | append .) }}
{{ end }}
{{ end }}
{{ end }}
{{ end }}
{{ with .Params.modularData }}
{{ range . }}
{{ if .modularLayout }}
{{ $filteredData = ($filteredData | append .) }}
{{ end }}
{{ end }}
{{ end }}
{{ return $filteredData }}