revuoxmrtheme/layouts/partials/right_icons.html
2024-07-03 15:02:11 -07:00

11 lines
No EOL
372 B
HTML

{{ with .Site.Params.right_icons }}
{{ range . }}
{{ $target := cond .external "_blank" "_self" }}
<!-- safeURL only works when the link is stored in a variable -->
{{ $link := .link }}
<a class="icon" href="{{ $link | safeURL }}" target="{{ $target }}">
<img src="/img/{{ .icon }}" alt="{{ .icon_alt }}" title="{{ .title }}" />
</a>
{{ end }}
{{ end }}