Verbeterde weergave sprekers
This commit is contained in:
parent
06e0bf0160
commit
1ec637828e
|
@ -6,11 +6,10 @@
|
|||
<div>
|
||||
{{ $count := .Params.speakers | len }}
|
||||
<h2>{{ i18n "speaker" (dict "Count" $count) | strings.FirstUpper }}</h2>
|
||||
{{ range $person := .Params.speakers }}
|
||||
{{ with (index site.Data.personen $person) }}
|
||||
{{ partial "show-image-of-person.html" (dict "context" . "profile_details" . "add_link_to_image" true) }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
<section>
|
||||
{{ .Scratch.Set "related_speakers" .Params.speakers }}
|
||||
{{ partial "show-speakers-small.html" . }}
|
||||
</section>
|
||||
</div>
|
||||
{{ end }}
|
||||
|
||||
|
|
13
themes/nluug/layouts/partials/show-speakers-small.html
Normal file
13
themes/nluug/layouts/partials/show-speakers-small.html
Normal file
|
@ -0,0 +1,13 @@
|
|||
<div class="grid-team-members-small-photos">
|
||||
{{ range $key,$val := .Scratch.Get "related_speakers" }}
|
||||
{{ with (index $.Site.Data.personen .) }}
|
||||
<div>
|
||||
{{ if .thumbnail }}
|
||||
{{ $image := replace .thumbnail "200x200" "150x150" }}
|
||||
{{ $alttext := printf "Foto van %s" .name }}
|
||||
{{ partial "show-image.html" (dict "context" . "image" $image "alt" $alttext "figcaption" .name "link" .profile_page) }}
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</div>
|
Reference in a new issue