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

social.html « partials « layouts - github.com/wd/hugo-fabric.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b4c9407ffe33c24b7d7c37f2050c5470df4a9842 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<ul id="social-links" style="text-align:center; clear:both;">
    {{ if .theme.github_user }}
    <!-- GitHub -->
    <li>
    <a href="https://github.com/{{ .theme.github_user }}" class="github" title="Github"></a>
    </li>
    {{ end }}
    {{ if .theme.googleplus_user }}
    <!-- Google Plus -->
    <li>
    <a href="http://plus.google.com/{{ .theme.googleplus_user }}?rel=author" class="google" title="Google+"></a>
    </li>
    {{ end }}
    {{ if .theme.facebook_user }}
    <!-- Facebook -->
    <li>
    <a href="http://www.facebook.com/{{ .theme.facebook_user }}" class="facebook" title="Facebook"></a>
    </li>
    {{ end }}
    {{ if .theme.twitter_user }}
    <!-- Twitter -->
    <li>
    <a href="http://www.twitter.com/{{ .theme.twitter_user }}" class="twitter" title="Twitter"></a>
    </li>
    {{ end }}
    {{ if .theme.linkedin_user }}
    <!-- LinkedIn -->
    <li>
    <a href="http://www.linkedin.com/in/{{ .theme.linkedin_user }}" class="linkedin" title="LinkedIn"></a>
    </li>
    {{ end }}
    {{ if .theme.skype_user }}
    <!-- Skype -->
    <li>
    <a href="http://myskype.info/{{ .theme.skype_user }}" class="skype" title="Skype"></a>
    </li>
    {{ end }}
    {{ if .theme.youtube_user }}
    <!-- Youtube -->
    <li>
    <a href="http://youtube.com/user/{{ .theme.youtube_user }}" class="youtube" title="Youtube"></a>
    </li>
    {{ end }}
    {{ if .theme.lastfm_user }}
    <!-- LastFM -->
    <li>
    <a href="http://www.lastfm.com/user/{{ .theme.lastfm_user }}" class="lastfm" title="LastFM"></a>
    </li>
    {{ end }}
</ul>