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: ab5e8ef6feee977b2851c9125ef75ac4cd66644a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<span id="loading-icons" style="display: none;">
    {{ 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 }}
</span>