8 lines
No EOL
278 B
HTML
8 lines
No EOL
278 B
HTML
{{ with .Site.Params.right_icons }}
|
|
{{ range . }}
|
|
{{ $target := cond .external "_blank" "_self" }}
|
|
<a class="icon" href="{{ .link | safeURL }}" target="{{ $target }}">
|
|
<img src="/img/{{ .icon }}" alt="{{ .icon_alt }}" title="{{ .title }}" />
|
|
</a>
|
|
{{ end }}
|
|
{{ end }} |