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/lidmaatschap/single.html

10 lines
292 B
HTML

{{ define "main" }}
{{ .Content }}
{{ if .Params.related_person }}
{{ $person := .Params.related_person }}
{{ with (index .Site.Data.personen $person) }}
{{ if .thumbnail }}<img src="{{ .thumbnail }}" alt="Foto van {{ .name }}">{{ end }}
{{ end }}
{{ end }}
{{ end }}