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

social.html « partials « layouts - github.com/nurlansu/hugo-sustain.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 829dce83c098d9f576e2d00f0981fd09c139f5eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<div class="social">
	<h4>
    {{ if .Site.Params.Social.Github }}
	  <a href="http://github.com/{{ .Site.Params.Social.Github }}"><i class="fa fa-github"></i></a>
    {{ end }}

    {{ if .Site.Params.Social.Email }}
	  <a href="mailto:{{ .Site.Params.Social.Email }}"><i class="fa fa-envelope"></i></a>
    {{ end }}

    {{ if .Site.Params.Social.Twitter }}
	  <a href="http://twitter.com/{{ .Site.Params.Social.Twitter }}"><i class="fa fa-twitter"></i></a>
    {{ end }}

    {{ if .Site.Params.Social.LinkedIn }}
	  <a href="http://linkedin.com/in/{{ .Site.Params.Social.LinkedIn }}"><i class="fa fa-linkedin"></i></a>
    {{ end }}

    {{ if .Site.Params.Social.Stackoverflow }}
	  <a href="http://stackoverflow.com/{{ .Site.Params.Social.Stackoverflow }}"><i class="fa fa-stack-overflow"></i></a>
    {{ end }}
	</h4>
</div>