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

social.html « footer « partials « layouts - github.com/curttimson/hugo-theme-dopetrope.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68e9120346fb5123393bf2f09787c1658aecdb83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<ul class="social">
    {{ with .Site.Data.footer.links.social }}
    {{ if .facebook }}
    <li><a class="icon fa-facebook" href="{{ .facebook }}"><span class="label">Facebook</span></a></li>
    {{ end }}
    {{ if .twitter }}
    <li><a class="icon fa-twitter" href="{{ .twitter }}"><span class="label">Twitter</span></a></li>
    {{ end }}
    {{ if .dribbble }}
    <li><a class="icon fa-dribbble" href="{{ .dribbble }}"><span class="label">Dribbble</span></a></li>
    {{ end }}
    {{ if .linkedin }}
    <li><a class="icon fa-linkedin" href="{{ .linkedin }}"><span class="label">LinkedIn</span></a></li>
    {{ end }}
    {{ if .googleplus }}
    <li><a class="icon fa-google-plus" href="{{ .googleplus }}"><span class="label">Google+</span></a></li>
    {{ end }}
    {{ end }}
</ul>