mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-09 23:09:47 +00:00
28 lines
No EOL
1.4 KiB
HTML
28 lines
No EOL
1.4 KiB
HTML
<div class="social-icons row">
|
|
<div class="col-md-4 col-md-offset-4">
|
|
{{ if .Site.Params.twitter }}
|
|
<a href="https://twitter.com/{{ .Site.Params.twitter }}" target="_blank"><i class="fa fa-twitter"></i></a>
|
|
{{ end }}
|
|
{{ if .Site.Params.linkedin }}
|
|
<a href="https://linkedin.com/in/{{ .Site.Params.linkedin }}" target="_blank"><i class="fa fa-linkedin"></i></a>
|
|
{{ end }}
|
|
{{ if .Site.Params.github }}
|
|
<a href="https://github.com/{{ .Site.Params.github }}" target="_blank"><i class="fa fa-github"></i></a>
|
|
{{ end }}
|
|
{{ if .Site.Params.codepen }}
|
|
<a href="https://codepen.io/{{ .Site.Params.codepen }}" target="_blank"><i class="fa fa-codepen"></i></a>
|
|
{{ end }}
|
|
{{ if .Site.Params.pinterest }}
|
|
<a href="https://pinterest.com/{{ .Site.Params.pinterest }}" target="_blank"><i class="fa fa-pinterest"></i></a>
|
|
{{ end }}
|
|
{{ if .Site.Params.facebook }}
|
|
<a href="https://facebook.com/{{ .Site.Params.facebook }}" target="_blank"><i class="fa fa-facebook"></i></a>
|
|
{{ end }}
|
|
{{ if .Site.Params.googleplus }}
|
|
<a href="https://plus.google.com/+{{ .Site.Params.googleplus }}" target="_blank"><i class="fa fa-google-plus"></i></a>
|
|
{{ end }}
|
|
{{ if .Site.RSSLink }}
|
|
<a href="{{ .Site.RSSLink }}"><i class="fa fa-rss"></i></a>
|
|
{{ end }}
|
|
</div>
|
|
</div> |