hugo-theme-hyde-hyde/layouts/partials/sidebar/social.html

39 lines
1.9 KiB
HTML
Raw Normal View History

<section class="social">
2018-07-10 01:41:30 +00:00
{{ with .Site.Params.social.twitter -}}
2018-02-21 23:37:37 +00:00
<a href="https://twitter.com/{{.}}"><i class="fab fa-twitter fa-lg" aria-hidden="true"></i></a>
2018-07-10 01:41:30 +00:00
{{- end }}
{{ with .Site.Params.social.facebook -}}
2018-02-21 23:37:37 +00:00
&nbsp;<a href="https://facebook.com/{{.}}"><i class="fab fa-facebook-f"></i></a>
2018-07-10 01:41:30 +00:00
{{- end }}
{{ with .Site.Params.social.github -}}
2018-02-21 23:37:37 +00:00
&nbsp;<a href="https://github.com/{{.}}"><i class="fab fa-github fa-lg" aria-hidden="true"></i></a>
2018-07-10 01:41:30 +00:00
{{- end }}
{{ with .Site.Params.social.bitbucket -}}
2018-02-21 23:37:37 +00:00
&nbsp;<a href="https://bitbucket.org/{{.}}"><i class="fab fa-bitbucket fa-lg" aria-hidden="true"></i></a>
2018-07-10 01:41:30 +00:00
{{- end }}
{{ with .Site.Params.social.gitlab -}}
2018-06-04 04:53:59 +00:00
&nbsp;<a href="https://gitlab.com/{{.}}"><i class="fab fa-gitlab fa-lg" aria-hidden="true"></i></a>
2018-07-10 01:41:30 +00:00
{{- end }}
{{ with .Site.Params.social.instagram -}}
2018-02-21 23:37:37 +00:00
&nbsp;<a href="https://instagram.com/{{.}}"><i class="fab fa-instagram fa-lg" aria-hidden="true"></i></a>
2018-07-10 01:41:30 +00:00
{{- end }}
{{ with .Site.Params.social.linkedin -}}
2018-02-21 23:37:37 +00:00
&nbsp;<a href="https://linkedin.com/in/{{.}}"><i class="fab fa-linkedin fa-lg" aria-hidden="true"></i></a>
2018-07-10 01:41:30 +00:00
{{- end }}
{{ with .Site.Params.social.stackoverflow -}}
2018-02-21 23:37:37 +00:00
&nbsp;<a href="https://stackoverflow.com/users/{{.}}"><i class="fab fa-stack-overflow fa-lg" aria-hidden="true"></i></a>
2018-07-10 01:41:30 +00:00
{{- end }}
2018-01-24 09:42:50 +00:00
{{ with .Site.Params.social.medium}}
&nbsp;<a href="https://medium.com/@{{.}}"><i class="fab fa-medium fa-lg" aria-hidden="true"></i></a>
2018-07-10 01:41:30 +00:00
{{- end }}
{{ with .Site.Params.social.xing -}}
2018-02-21 23:37:37 +00:00
&nbsp;<a href="https://www.xing.com/profile/{{.}}"><i class="fab fa-xing fa-lg" aria-hidden="true"></i></a>
2018-07-10 01:41:30 +00:00
{{- end }}
{{ with .Site.Params.social.keybase -}}
2018-05-27 09:41:38 +00:00
&nbsp;<a href="https://keybase.io/{{.}}"><i class="fab fa-keybase fa-lg" aria-hidden="true"></i></a>
2018-07-10 01:41:30 +00:00
{{- end }}
{{ with .Site.Params.social.email -}}
2018-02-21 23:37:37 +00:00
&nbsp;<a href="mailto:{{.}}"><i class="fas fa-at fa-lg" aria-hidden="true"></i></a>
2018-07-10 01:41:30 +00:00
{{- end }}
2018-01-24 09:42:50 +00:00
</section>