8 lines
268 B
HTML
8 lines
268 B
HTML
|
{{ 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 }}
|