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

social.html « partials « layouts - github.com/nodejh/hugo-theme-cactus-plus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 62ba3bbac4ee470357bad45254e59ab9ce3c6013 (plain)
1
2
3
4
5
6
7
8
9
10
<div id="social">

{{ range $key, $val := .Site.Social }}
    <a class="symbol" href="{{ $val }}" target="_blank">
        {{ $svg :=  print "svgs/" $key ".svg" }}
        {{ partial $svg (dict "fill" "#bbbbbb" "width" 28 "height" 28 ) }}
    </a>
{{ end }}

</div>