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

social-links.html « _default « layouts - github.com/gundamew/hugo-bingo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 044feb6408f3bce2cefbefd35797d9250c5689fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<div class="social-media-links">
    {{ with .Site.Params.github }}
        <a class="social-media" href="https://github.com/{{ . }}">
            <img src="{{ "img/github.svg" | absURL }}" alt="github">
        </a>
    {{ end }}
    {{ with .Site.Params.linkedin }}
        <a class="social-media" href="https://www.linkedin.com/in/{{ . }}">
            <img src="{{ "img/linkedin.svg" | absURL }}" alt="linkedin">
        </a>
    {{ end }}
    {{ with .Site.Params.medium }}
        <a class="social-media" href="https://medium.com/{{ . }}">
            <img src="{{ "img/medium.svg" | absURL }}" alt="medium">
        </a>
    {{ end }}
    {{ with .Site.Params.twitter }}
        <a class="social-media" href="https://twitter.com/{{ . }}">
            <img src="{{ "img/twitter.svg" | absURL }}" alt="twitter">
        </a>
    {{ end }}
    {{ with .Site.Params.facebook }}
        <a class="social-media" href="https://facebook.com/{{ . }}">
            <img src="{{ "img/facebook.svg" | absURL }}" alt="facebook">
        </a>
    {{ end }}
    {{ with .Site.Params.instagram }}
        <a class="social-media" href="https://instagram.com/{{ . }}">
            <img src="{{ "img/instagram.svg" | absURL }}" alt="instagram">
        </a>
    {{ end }}
</div>