2021-01-21 21:07:48 +00:00
|
|
|
<!-- List all of the social media links -->
|
|
|
|
{{ with (index $.Site.Data "more-contentful").contacts }}
|
2023-03-23 06:30:22 +00:00
|
|
|
<nav class="site__socials--content">
|
2021-01-21 21:07:48 +00:00
|
|
|
{{ $useImage := index . "useImage" | default false }}
|
|
|
|
|
|
|
|
{{ $links := sort .links "name" "asc" }}
|
|
|
|
{{- range $links -}}
|
2021-02-02 17:33:36 +00:00
|
|
|
|
|
|
|
{{- /* Render the link only to externally linked pages/files and those with >=0 weight. */ -}}
|
|
|
|
{{ if (and (not .excludeInMenu) (eq (absLangURL .url) .url)) }}
|
2021-01-21 21:07:48 +00:00
|
|
|
<a {{ if $useImage }}class="site__social-icon"{{ end }} rel="me" href="{{ .url | absLangURL }}" aria-label="{{ with .name }}{{ . }}{{ else }}{{ .id }}{{ end }}">
|
|
|
|
{{- .name }}
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
{{- end -}}
|
2023-03-23 06:30:22 +00:00
|
|
|
</nav>
|
2021-01-21 21:07:48 +00:00
|
|
|
{{ end }}
|