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

social.html « partials « layouts - github.com/st-wong/hugo-spectre-pixel-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5c353dad5b97c15e8bc952218fe036dba056c33 (plain)
1
2
3
4
5
6
7
8
9
10
<div class="container">
{{ range $key, $val := .Site.Social }}
  {{ if eq $key "email" }}
    <a class="symbol" href="mailto:{{ $val }}" target="_blank"><i class="fas fa-envelope"></i>
  {{ else }}
    <a class="symbol" href="{{ $val }}" target="_blank"><i class="fab fa-{{ $key }}"></i>
  {{ end }}
  </a>
{{ end }}
</div>