mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 07:58:02 +00:00
24 lines
603 B
HTML
24 lines
603 B
HTML
<!-- List all of the social media links -->
|
|
{{ with (index $.Site.Data "more-contentful").contacts }}
|
|
<ul class="list site__socials--content">
|
|
{{ $useImage := index . "useImage" | default false }}
|
|
|
|
{{ $links := sort .links "name" "asc" }}
|
|
{{- range $links -}}
|
|
{{ if ne .id "rss" }}
|
|
<li>
|
|
<a {{ if $useImage }}class="site__social-icon"{{ end }} rel="me" href="{{ .url | absLangURL }}" aria-label="{{ with .name }}{{ . }}{{ else }}{{ .id }}{{ end }}">
|
|
{{- .name }}
|
|
</a>
|
|
</li>
|
|
{{ end }}
|
|
{{- end -}}
|
|
</ul>
|
|
<style>
|
|
.site__socials--content {
|
|
margin: auto;
|
|
}
|
|
</style>
|
|
{{ end }}
|
|
|