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: 35a3c673fc1fe5ef6d8b9f5aa720f01c99436f4e (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
<p class="social social--big">
  {{ with .Site.Params.social.facebook }}
  <a href="{{ . }}" class="facebook" title="Facebook" rel="me">
    <i class="fa fa-facebook"></i>
  </a>
  {{end}}
  {{ with .Site.Params.social.googleplus }}
  <a href="{{ . }}" class="gplus" title="Google Plus" rel="me">
    <i class="fa fa-google-plus"></i>
  </a>
  {{end}}
  {{ with .Site.Params.social.twitter }}
  <a href="{{ . }}" class="twitter" title="Twitter" rel="me">
    <i class="fa fa-twitter"></i>
  </a>
  {{end}}
  {{ with .Site.Params.social.instagram }}
  <a href="{{ . }}" title="" class="instagram" title="Instagram" rel="me">
    <i class="fa fa-instagram"></i>
  </a>
  {{end}}
  {{ with .Site.Params.social.email }}
  <a href="mailto:{{ . }}" class="email" title="E-mail">
    <i class="fa fa-envelope"></i>
  </a>
  {{end}}
  {{ with .Site.Params.social.linkedin }}
  <a href="{{ . }}" title="LinkedIn" rel="me">
    <i class="fa fa-linkedin"></i>
  </a>
  {{end}}
  {{ with .Site.Params.social.stackoverflow }}
  <a href="{{ . }}" title="Stack Overflow" rel="me">
    <i class="fa fa-stack-overflow"></i>
  </a>
  {{end}}
  {{ with .Site.Params.social.github }}
  <a href="{{ . }}" title="GitHub" rel="me">
    <i class="fa fa-github"></i>
  </a>
  {{end}}
  {{ with .Site.Params.social.gitlab }}
  <a href="{{ . }}" data-animate-hover="pulse" class="external" title="GitLab" rel="me">
    <i class="fa fa-gitlab"></i>
  </a>
  {{end}}
  {{ with .Site.Params.social.youtube }}
  <a href="{{ . }}" title="YouTube" rel="me">
    <i class="fa fa-youtube"></i>
  </a>
  {{end}}
  {{ with .Site.Params.social.whatsapp }}
  <a href="{{ . }}" data-animate-hover="pulse" class="external" title="WhatsApp">
    <i class="fa fa-whatsapp"></i>
  </a>
  {{end}}
</p>