revuoxmrtheme/layouts/partials/right_icons.html

8 lines
268 B
HTML
Raw Normal View History

2024-07-02 22:03:13 +00:00
{{ with .Site.Params.right_icons }}
{{ range . }}
{{ $target := cond .external "_blank" "_self" }}
<a class="icon" href="{{ .link }}" target="{{ $target }}">
<img src="/img/{{ .icon }}" alt="{{ .icon_alt }}" title="{{ .title }}" />
</a>
{{ end }}
{{ end }}