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

socials.html « components « partials « layouts - github.com/reuixiy/hugo-theme-meme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 89412ad90d416a98b283c9ce4d9e26eefc9803cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ if .Site.Params.enableSocials }}
    {{ with .Site.Data.Socials }}
        <ul class="socials">
            {{- range sort .socials "weight" -}}
                <li class="socials-item">
                    <a href="{{ .url | safeURL }}" target="_blank" rel="external noopener" title="{{ .title }}">
                        {{- partial "utils/icon.html" (dict "$" $ "name" .icon "class" "social-icon") -}}
                    </a>
                </li>
            {{- end -}}
        </ul>
    {{ end }}
{{ end }}