Welcome to mirror list, hosted at ThFree Co, Russian Federation.

social.html « hero « sections « partials « layouts - github.com/gurusabarish/hugo-profile.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b70df1563644b4bc79600335abc3f281474ad452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ range .Site.Params.hero.socialLinks.fontAwesomeIcons }}
<span class="px-1">
    <a href="{{ .url }}" target="_blank" class="btn social-icon">
        <i class="{{ .icon }}"></i>
    </a>
</span>
{{ end }}

{{ range .Site.Params.hero.socialLinks.customIcons }}
<span class="px-1">
    <a href="{{ .url }}" target="_blank" class="btn social-icon">
        <img src="{{ .icon }}">
    </a>
</span>
{{ end }}