hugo-theme-anubis2/layouts/partials/social.html

21 lines
735 B
HTML
Raw Normal View History

2021-05-17 20:04:42 +02:00
<ul class="social-icons">
{{ range $.Site.Params.Social }}
{{ if and (isset $.Site.Data.social.social_icons .id) (isset . "name") }}
{{ $url := index $.Site.Data.social.social_icons .id }}
{{ $ref := printf $url .name }}
2021-05-17 20:04:42 +02:00
<li>
<a {{ printf "href=%q" $ref | safeHTMLAttr }} title="{{ humanize .id }}" rel="me">
2021-07-09 18:00:52 +02:00
{{ partial "font-awesome.html" (dict "iconName" .id "custom" false) }}
2021-05-17 20:04:42 +02:00
</a>
</li>
{{ else if (isset . "url") }}
<li>
<a href="{{ printf .url }}" title="{{ humanize .id }}" rel="me">
2021-07-09 18:00:52 +02:00
{{ partial "font-awesome.html" (dict "iconName" .id "custom" true) }}
2021-05-17 20:04:42 +02:00
</a>
</li>
{{ end }}
{{ end }}
</ul>