20 lines
495 B
HTML
20 lines
495 B
HTML
{{- $icon_vendor := .Get "vendor" -}}
|
|
{{- $icon_link := .Get "link" -}}
|
|
{{- $icon_name := .Get "name" -}}
|
|
|
|
<div class="icon">
|
|
{{ if $icon_link }}
|
|
<a rel="noopener" target="_blank" href="{{ $icon_link }}" aria-label="{{ $icon_name }}">
|
|
{{ else }}
|
|
<div>
|
|
{{ end }}
|
|
{{ if eq $icon_vendor "feather" }}
|
|
{{ partial "svg/feather.html" $icon_name }}
|
|
{{ end }}
|
|
{{ if $icon_link }}
|
|
</a>
|
|
{{ else }}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|