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

social.html « partials « layouts - github.com/danielkvist/hugo-piercer-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4ef72dc9067b6d77de8f1be6a6a8eb0c8bd62ffd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<section class="social-links" id="socialLinks">

    {{ $links := $.Site.Params.Social }}

    {{ range $k, $v := $links }}
    {{ if $v }}
    <a href="{{ $v }}" class="social-links__link" alt="{{ $k }}" target="_blank" aria-label="{{ $v }}"
        rel="noopener noreferrer">
        <span class="social-links__link__icon">
            <i class="fab fa-{{ $k }}"></i>
        </span>
    </a>
    {{ end }}
    {{ end }}

</section>