From 60a93198ef45dd89a1a0359527b97c0dca224db4 Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Thu, 29 Jun 2023 20:30:13 +0200 Subject: [PATCH] Foto van Buro tonen --- themes/nluug/layouts/lidmaatschap/single.html | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 themes/nluug/layouts/lidmaatschap/single.html diff --git a/themes/nluug/layouts/lidmaatschap/single.html b/themes/nluug/layouts/lidmaatschap/single.html new file mode 100644 index 0000000..4ab5c9f --- /dev/null +++ b/themes/nluug/layouts/lidmaatschap/single.html @@ -0,0 +1,9 @@ +{{ define "main" }} + {{ .Content }} + {{ if .Params.related_person }} + {{ $person := .Params.related_person }} + {{ with (index .Site.Data.personen $person) }} + {{ if .thumbnail }}Foto van {{ .name }}{{ end }} + {{ end }} + {{ end }} +{{ end }}