PaperModX/layouts/partials/social_icons.html
Reorx 8a0915bb81 change the way svg icon is get
use data instead of if else in partial, this makes iterating and display all the icons possible
2022-04-13 21:09:58 +08:00

9 lines
317 B
HTML

<div class="social-icons">
{{- range .icons }}
<a href="{{ trim .url " " }}" target="_blank" rel="noopener noreferrer me" title="{{ .name | title }}">
{{- $icon_name := ( trim .name " " | lower )}}
{{ safeHTML (index $.svg $icon_name | default $.svg.default) }}
</a>
{{- end }}
</div>