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: 4f631a2e071a7390a9d8cd022a5fd2ff6103aa16 (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="emailto:{{ $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>