mirror of
https://github.com/RdvSpeakers/rdvspeakers-theme-hugo.git
synced 2026-03-10 08:51:19 +00:00
14 lines
269 B
HTML
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 }} |