redstrate.com/themes/red/layouts/shortcodes/out-link.html
2023-02-23 19:16:09 -05:00

13 lines
381 B
HTML

{{ $link := .Get "link" }}
{{ $banner := .Get "banner" }}
{{ $label := .Get "label" }}
<a href="{{ $link }}" style="text-decoration: none;">
{{ $path := printf "/links/%s" $banner}}
{{ $img := resources.Get $path }}
{{ with $img }}
<img src="{{ .RelPermalink }}" style="width: auto; height: 31px;" alt="{{ $label }}" width="{{ .Width }}" height="{{ .Height }}"/>
{{ end }}
</a>