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

14 lines
269 B
HTML

{{ define "main" }}
{{ .Content }}
<section>
<ul class="speakers shuffle">
{{ $speakers := where .Site.AllPages ".Section" "speakers" }}
{{ range where $speakers ".Kind" "page" }}
<li>{{ partial "speaker.html" . }}</li>
{{ end }}
</ul>
</section>
{{ end }}