14 lines
504 B
HTML
14 lines
504 B
HTML
|
{{ range $key,$val := .Scratch.Get "event_sponsors" }}
|
||
|
{{ with (index $.Site.Data.sponsoren .) }}
|
||
|
<div>
|
||
|
<strong>{{ .name }}</strong>
|
||
|
{{ if .icon_small }}
|
||
|
{{ $alttext := printf "Logo van %s" .name }}
|
||
|
{{ if .url }}<a href="{{ .url }}" rel="nofollow">{{ end }}
|
||
|
{{ partial "show-image.html" (dict "context" . "image" .icon_small "alt" $alttext) }}
|
||
|
{{ if .url }}</a>{{ end }}
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
{{ end }}
|
||
|
{{ end }}
|