redstrate.com/themes/red/layouts/shortcodes/out-link.html

15 lines
506 B
HTML
Raw Normal View History

2023-02-23 19:16:09 -05:00
{{ $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 }}
<!-- Some browsers (safari) sucks and blocks 88x31, so force them to be 89x31 instead. -->
<img src="{{ .RelPermalink }}" style="width: auto; height: 31px; image-rendering: pixelated;" alt="{{ $label }}" width="{{ add .Width 1 }}" height="{{ .Height }}"/>
2023-02-23 19:16:09 -05:00
{{ end }}
</a>