2021-01-20 19:16:26 +00:00
|
|
|
<footer aria-label="Site footer">
|
2020-11-02 08:53:37 +00:00
|
|
|
<!-- A convenient back to top link. -->
|
2022-11-22 11:45:45 +00:00
|
|
|
<a href="#top">{{ i18n "back_to_top" | default "Back to top" }}</a>
|
2020-11-02 08:53:37 +00:00
|
|
|
|
|
|
|
<!-- Linking to other languages' homepage. -->
|
|
|
|
{{ if $.Site.IsMultiLingual }}
|
2020-11-05 05:54:38 +00:00
|
|
|
<p>{{ i18n "multilingual" }}:
|
2023-03-18 06:54:27 +00:00
|
|
|
<span class="site__list site__languages">
|
2020-11-05 05:54:38 +00:00
|
|
|
{{ range $.Site.Languages }}
|
|
|
|
<a href="{{ . | relURL }}" hreflang="{{ .Lang }}">{{ with .LanguageName }}{{ . }}{{ else }}{{ .Lang }}{{ end }}</a>
|
|
|
|
{{ end }}
|
|
|
|
</span>
|
2020-11-02 08:53:37 +00:00
|
|
|
</p>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
|
|
|
|
<!-- List all of the social media links -->
|
|
|
|
{{ with (index $.Site.Data "more-contentful").contacts }}
|
2023-03-18 06:54:27 +00:00
|
|
|
<nav class="site__list site__socials">
|
2020-11-02 08:53:37 +00:00
|
|
|
{{ $useImage := index . "useImage" | default false }}
|
|
|
|
|
|
|
|
{{ $links := sort .links "id" "asc" }}
|
|
|
|
{{ $links = sort $links "weight" "asc" }}
|
|
|
|
{{- range $links -}}
|
2020-11-05 05:54:38 +00:00
|
|
|
<a {{ if $useImage }}class="site__social-icon"{{ end }} rel="me" href="{{ .url | absLangURL }}" aria-label="{{ with .name }}{{ . }}{{ else }}{{ .id }}{{ end }}">
|
|
|
|
{{- if $useImage }}
|
2023-04-03 03:40:24 +00:00
|
|
|
{{- partial "components/simple-icon.html" (dict "id" .id) }}
|
2020-11-05 05:54:38 +00:00
|
|
|
{{- else }}
|
|
|
|
{{- .name }}
|
|
|
|
{{- end }}
|
2020-11-02 08:53:37 +00:00
|
|
|
</a>
|
|
|
|
{{- end -}}
|
2023-03-16 10:02:42 +00:00
|
|
|
</nav>
|
2020-11-02 08:53:37 +00:00
|
|
|
{{ end }}
|
|
|
|
|
2022-11-22 11:45:45 +00:00
|
|
|
{{ $markdownOpt := dict "markup" "markdown" }}
|
2020-11-02 08:53:37 +00:00
|
|
|
|
|
|
|
<!-- Copyright info. -->
|
2022-11-22 11:45:45 +00:00
|
|
|
<p>{{ with $.Site.Copyright }}{{ . | $.Site.RenderPage $markdownOpt }}{{ else }}© {{ now.Year }} {{ with $.Site.Author.name }}{{ . }}{{ else }}{{ $.Site.Title }}{{ end }}{{ end }}</p>
|
2020-11-02 08:53:37 +00:00
|
|
|
</footer>
|
|
|
|
|