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

social.html « partials « layouts - github.com/AngeloStavrow/indigo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 42780a80d30b41f97733a7302869732ce0ba5e60 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<aside id="social">
  <div id="social-icons">
    {{ with .Site.Params.EmailAddress }}
    <div class="icon-24x24">
      <a class="glyph" alt="Email me" href="mailto:{{ . }}"><img src="/icons/envelope.svg" height="24px" width="24px"></a>
    </div>
    {{ end }}
    {{ with .Site.Params.FacebookUser }}
    <div class="icon-24x24">
      <a class="glyph" alt="Facebook profile" href="{{ . }}"><img src="/icons/facebook.svg" height="24px" width="24px"></a>
    </div>
    {{ end }}
    {{ with .Site.Params.FlickrUser }}
    <div class="icon-24x24">
      <a class="glyph" alt="Flickr profile" href="https://flickr.com/people/{{ . }}"><img src="/icons/flickr.svg" height="24px" width="24px"></a>
    </div>
    {{ end }}
    {{ with .Site.Params.GitHubUser }}
    <div class="icon-24x24">
      <a class="glyph" alt="GitHub profile" href="https://github.com/{{ . }}"><img src="/icons/github.svg" height="24px" width="24px"></a>
    </div>
    {{ end }}
    {{ with .Site.Params.GitLabUser }}
    <div class="icon-24x24">
      <a class="glyph" alt="GitLab profile" href="https://gitlab.com/{{ . }}"><img src="/icons/gitlab.svg" height="24px" width="24px"></a>
    </div>
    {{ end }}
    {{ with .Site.Params.GlitchUser }}
    <div class="icon-24x24">
      <a class="glyph" alt="Glitch profile" href="https://glitch.com/@{{ . }}"><img src="/icons/glitch.svg" height="24px" width="24px"></a>
    </div>
    {{ end }}
    {{ with .Site.Params.KeybaseUser }}
    <div class="icon-24x24">
      <a class="glyph" alt="Keybase profile" href="https://keybase.io/{{ . }}"><img src="/icons/keybase.svg" height="24px" width="24px"></a>
    </div>
    {{ end }}
    {{ with .Site.Params.MicroBlogUser }}
    <div class="icon-24x24">
      <a class="glyph" alt="Micro.Blog profile" href="https://micro.blog/{{ . }}"><img src="/icons/microblog.svg" height="24px" width="24px"></a>
    </div>
    {{ end }}
    {{ with .Site.Params.RedditUser }}
    <div class="icon-24x24">
      <a class="glyph" alt="Reddit profile" href="https://www.reddit.com/user/{{ . }}">
	<img src="/icons/reddit-alien.svg" height="24px" width="24px" />
      </a>
    </div>
    {{ end }}
    {{ with .Site.Params.StackOverflowUser }}
    <div class="icon-24x24">
      <a class="glyph" alt="Stack Overflow profile" href="https://stackoverflow.com/users/{{ . }}"><img src="/icons/stack-overflow.svg" height="24px" width="24px"></a>
    </div>
    {{ end }}
    {{ with .Site.Params.TumblrUser }}
    <div class="icon-24x24">
      <a class="glyph" alt="Tumblr profile" href="https://{{ . }}.tumblr.com/"><img src="/icons/tumblr.svg" height="24px" width="24px"></a>
    </div>
    {{ end }}
    {{ with .Site.Params.TwitterUser }}
    <div class="icon-24x24">
      <a class="glyph" alt="Twitter profile" href="https://twitter.com/{{ . }}"><img src="/icons/twitter.svg" height="24px" width="24px"></a>
     </div>
     {{ end }}
  </div>
</aside>