Files
rdvspeakers-theme-hugo/layouts/shortcodes/teams.html
Horacio Gonzalez 5a3f6a3161 Initial commit
2020-10-14 14:21:46 +02:00

18 lines
427 B
HTML

{{ $_hugo_config := `{ "version": 1 }` }}
{{ $site := .Site }}
{{ range (split (.Get "types") ",") }}
<section class="members">
{{ $typeLabel := (split . "=") }}
{{ $type := (index $typeLabel 0) }}
{{ $label := (index $typeLabel 1) }}
<h2>{{ $label }}</h2>
<ul class="members shuffle">
{{ range where $site.AllPages "Params.type" $type }}
<li>{{ partial "team.html" . }}</li>
{{ end }}
</ul>
</section>
{{ end }}