2018-07-23 12:15:56 +10:00
|
|
|
<section class="social">
|
2018-07-30 07:41:49 +10:00
|
|
|
{{ with .Site.Params.social.twitter }}
|
2018-09-13 20:29:19 +01:00
|
|
|
<a href="https://twitter.com/{{.}}" rel="me"><i class="fab fa-twitter fa-lg" aria-hidden="true"></i></a>
|
2018-07-30 07:41:49 +10:00
|
|
|
{{ end }}
|
|
|
|
{{ with .Site.Params.social.facebook }}
|
2018-09-30 18:40:28 +10:00
|
|
|
<a href="https://facebook.com/{{.}}" rel="me"><i class="fab fa-facebook-f"></i></a>
|
2018-07-30 07:41:49 +10:00
|
|
|
{{ end }}
|
|
|
|
{{ with .Site.Params.social.github }}
|
2018-09-30 18:40:28 +10:00
|
|
|
<a href="https://github.com/{{.}}" rel="me"><i class="fab fa-github fa-lg" aria-hidden="true"></i></a>
|
2018-07-30 07:41:49 +10:00
|
|
|
{{ end }}
|
|
|
|
{{ with .Site.Params.social.bitbucket }}
|
2018-09-30 18:40:28 +10:00
|
|
|
<a href="https://bitbucket.org/{{.}}" rel="me"><i class="fab fa-bitbucket fa-lg" aria-hidden="true"></i></a>
|
2018-07-30 07:41:49 +10:00
|
|
|
{{ end }}
|
2019-02-26 00:41:22 +01:00
|
|
|
{{ $gitlab_domain := "gitlab.com" }}
|
|
|
|
{{ with .Site.Params.social.custom_gitlab_domain }}
|
|
|
|
{{ $gitlab_domain = . }}
|
|
|
|
{{ end }}
|
2018-07-30 07:41:49 +10:00
|
|
|
{{ with .Site.Params.social.gitlab }}
|
2019-02-26 00:41:22 +01:00
|
|
|
<a href="https://{{ $gitlab_domain }}/{{.}}" rel="me"><i class="fab fa-gitlab fa-lg" aria-hidden="true"></i></a>
|
2018-07-30 07:41:49 +10:00
|
|
|
{{ end }}
|
|
|
|
{{ with .Site.Params.social.instagram }}
|
2018-09-30 18:40:28 +10:00
|
|
|
<a href="https://instagram.com/{{.}}" rel="me"><i class="fab fa-instagram fa-lg" aria-hidden="true"></i></a>
|
2018-07-30 07:41:49 +10:00
|
|
|
{{ end }}
|
|
|
|
{{ with .Site.Params.social.linkedin }}
|
2018-09-30 18:40:28 +10:00
|
|
|
<a href="https://linkedin.com/in/{{.}}" rel="me"><i class="fab fa-linkedin fa-lg" aria-hidden="true"></i></a>
|
2018-07-30 07:41:49 +10:00
|
|
|
{{ end }}
|
|
|
|
{{ with .Site.Params.social.stackoverflow }}
|
2018-09-30 18:40:28 +10:00
|
|
|
<a href="https://stackoverflow.com/users/{{.}}" rel="me"><i class="fab fa-stack-overflow fa-lg" aria-hidden="true"></i></a>
|
2018-07-30 07:41:49 +10:00
|
|
|
{{ end }}
|
2018-01-24 16:42:50 +07:00
|
|
|
{{ with .Site.Params.social.medium}}
|
2018-09-30 18:40:28 +10:00
|
|
|
<a href="https://medium.com/@{{.}}" rel="me"><i class="fab fa-medium fa-lg" aria-hidden="true"></i></a>
|
2018-07-30 07:41:49 +10:00
|
|
|
{{ end }}
|
|
|
|
{{ with .Site.Params.social.xing }}
|
2018-09-30 18:40:28 +10:00
|
|
|
<a href="https://www.xing.com/profile/{{.}}" rel="me"><i class="fab fa-xing fa-lg" aria-hidden="true"></i></a>
|
2018-07-30 07:41:49 +10:00
|
|
|
{{ end }}
|
|
|
|
{{ with .Site.Params.social.keybase }}
|
2018-09-30 18:40:28 +10:00
|
|
|
<a href="https://keybase.io/{{.}}" rel="me"><i class="fab fa-keybase fa-lg" aria-hidden="true"></i></a>
|
2018-07-30 07:41:49 +10:00
|
|
|
{{ end }}
|
2018-08-18 01:58:04 -03:00
|
|
|
{{ with .Site.Params.social.telegram }}
|
2018-09-30 18:40:28 +10:00
|
|
|
<a href="https://t.me/{{.}}" rel="me"><i class="fab fa-telegram fa-lg" aria-hidden="true"></i></a>
|
2018-08-18 01:58:04 -03:00
|
|
|
{{ end }}
|
2018-10-11 00:31:56 +02:00
|
|
|
{{ with .Site.Params.social.aboutme }}
|
|
|
|
<a href="https://about.me/{{.}}"><i class="fas fa-address-card fa-lg" aria-hidden="true"></i></a>
|
|
|
|
{{ end }}
|
2018-07-30 07:41:49 +10:00
|
|
|
{{ with .Site.Params.social.email }}
|
2018-09-30 18:40:28 +10:00
|
|
|
<a href="mailto:{{.}}" rel="me"><i class="fas fa-at fa-lg" aria-hidden="true"></i></a>
|
2018-07-30 07:41:49 +10:00
|
|
|
{{ end }}
|
2018-01-24 16:42:50 +07:00
|
|
|
</section>
|