mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-13 00:39:45 +00:00
7584ca2c4f
* Insert arbitrary HTML attributes to social links via config.toml (fixes #121)
7 lines
211 B
HTML
7 lines
211 B
HTML
<div class="social-icons">
|
|
{{ range .Site.Params.social }}
|
|
<a href="{{ .url }}" {{ .html_attributes | safeHTMLAttr }}>
|
|
<i class="{{ .icon_pack}} fa-{{ .icon}}"></i>
|
|
</a>
|
|
{{ end }}
|
|
</div>
|