6
0
Fork 0
This repository has been archived on 2024-10-15. You can view files and clone it, but cannot push or open issues or pull requests.
fediversity_website_archive/themes/nluug/layouts/partials/show-speakers-small.html

14 lines
505 B
HTML
Raw Normal View History

2023-11-02 10:05:14 +01:00
<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>