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

link.html « partials « layouts - github.com/hauke96/hugo-theme-hamburg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b18321189d6c35bb5df285466743196a4cffc785 (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
<div class="sns-links hidden-print">
  {{ with .Site.Params.contact }}
    <a href="{{ . }}">
      <i class="fa fa-envelope"></i>
    </a>
  {{ end }}
  {{ with .Site.Params.twitter }}
    <a href="https://twitter.com/{{ . }}" target="_blank">
      <i class="fa fa-twitter"></i>
    </a>
    {{ end }}
  {{ with .Site.Params.instagram }}
    <a href="https://instagram.com/{{ . }}" target="_blank">
      <i class="fa fa-instagram"></i>
    </a>
  {{ end }}
  {{ with .Site.Params.googleplus }}
    <a href="https://plus.google.com/+{{ . }}" target="_blank">
      <i class="fa fa-google"></i>
    </a>
  {{ end }}
  {{ with .Site.Params.facebook }}
    <a href="https://facebook.com/{{ . }}" target="_blank">
      <i class="fa fa-facebook"></i>
    </a>
  {{ end }}
  {{ with .Site.Params.github }}
    <a href="https://github.com/{{ . }}" target="_blank">
      <i class="fa fa-github"></i>
    </a>
  {{ end }}
  {{ with .Site.Params.gitlab }}
    <a href="https://gitlab.com/{{ . }}" target="_blank">
      <i class="fa fa-gitlab"></i>
    </a>
  {{ end }}
  {{ with .Site.Params.reddit }}
    <a href="https://reddit.com/user/{{ . }}" target="_blank">
      <i class="fa fa-reddit-alien"></i>
    </a>
  {{ end }}
  {{ with .Site.Params.hackernews }}
    <a href="https://news.ycombinator.com/user?id={{ . }}" target="_blank">
      <i class="fa fa-hacker-news"></i>
    </a>
  {{ end }}
  {{ with .Site.Params.stackoverflow }}
    <a href="https://stackoverflow.com/users/{{ . }}" target="_blank">
      <i class="fa fa-stack-overflow"></i>
    </a>
  {{ end }}
  {{ with .Site.Params.linkedin }}
    <a href="https://linkedin.com/in/{{ . }}" target="_blank">
      <i class="fa fa-linkedin"></i>
    </a>
  {{ end }}
  {{ with .Site.Params.keybase }}
    <a href="https://keybase.io/{{ . }}" target="_blank">
      <i class="fa fa-key"></i>
    </a>
  {{ end }}
</div>