website/themes/nluug/layouts/partials/include-event-sponsors.html

14 lines
504 B
HTML
Raw Permalink Normal View History

{{ 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 }}