mirror of
https://github.com/foo-dogsquared/hugo-theme-more-contentful.git
synced 2025-04-27 00:19:14 +00:00
12 lines
471 B
HTML
12 lines
471 B
HTML
|
{{- /*
|
||
|
A partial for easily using icons from Simple Icons set.
|
||
|
*/ -}}
|
||
|
{{- $name := default .id .name }}
|
||
|
{{- $res := resources.ExecuteAsTemplate (printf "icons/brand/%s.svg" .id)
|
||
|
(dict "id" .id
|
||
|
"name" $name)
|
||
|
(resources.Get "templates/simple-icon.svg") }}
|
||
|
<svg class="site__icon">
|
||
|
<use href="{{ $res.RelPermalink }}#{{ $name }}"></use>
|
||
|
</svg>
|