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

social_buttons_in_contact.html « partials « layouts - github.com/kishaningithub/hugo-creative-portfolio-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab0bc18214c147a3c4980e0940bca78171c65e29 (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
<p class="social social--big">
  {{ with .Site.Params.social.facebook }}
  <a href="{{ . }}" class="facebook">
    <i class="fa fa-facebook"></i>
  </a>
  {{end}}
  {{ with .Site.Params.social.googleplus }}
  <a href="{{ . }}" class="gplus">
    <i class="fa fa-google-plus"></i>
  </a>
  {{end}}
  {{ with .Site.Params.social.twitter }}
  <a href="{{ . }}" class="twitter">
    <i class="fa fa-twitter"></i>
  </a>
  {{end}}
  {{ with .Site.Params.social.instagram }}
  <a href="{{ . }}" title="" class="instagram">
    <i class="fa fa-instagram"></i>
  </a>
  {{end}}
  {{ with .Site.Params.social.email }}
  <a href="mailto:{{ . }}" class="email">
    <i class="fa fa-envelope"></i>
  </a>
  {{end}}
  {{ with .Site.Params.social.linkedin }}
  <a href="{{ . }}">
    <i class="fa fa-linkedin"></i>
  </a>
  {{end}}
  {{ with .Site.Params.social.stackoverflow }}
  <a href="{{ . }}">
    <i class="fa fa-stack-overflow"></i>
  </a>
  {{end}}
  {{ with .Site.Params.social.github }}
  <a href="{{ . }}">
    <i class="fa fa-github"></i>
  </a>
  {{end}}
  {{ with .Site.Params.social.youtube }}
  <a href="{{ . }}">
    <i class="fa fa-youtube"></i>
  </a>
  {{end}}
  {{ with .Site.Params.social.whatsapp }}
  <a href="{{ . }}" data-animate-hover="pulse" class="external">
    <i class="fa fa-whatsapp"></i>
  </a>
  {{end}}
</p>