Simon Gardling 032679b34a setup
2023-10-11 17:38:05 -04:00

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>