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

social-icons.html « partials « layouts - github.com/jakewies/hugo-theme-codex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bdcadbffbfe5b65800b98635c60562674b870d4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ $currentPage := . }}
{{ $icons := .Site.Params.iconOrder | default (slice "Twitter" "GitHub" "Email" "Mastodon" "Facebook" "GitLab" "Instagram" "LinkedIn" "YouTube") }}

<div class="social-icons">
  {{ range $icons }}
    {{ $icon := anchorize . }} 
    {{ if isset $currentPage.Site.Params $icon }}
      <a class="social-icons__link" rel="me" title="{{ . }}"
         href="{{ index $currentPage.Site.Params $icon }}"
         target="_blank" rel="noopener">
        <div class="social-icons__icon" style="background-image: url('{{print "svg/" $icon ".svg" | absURL}}')"></div>
      </a>
    {{ end }}
  {{ end }}   
</div>