mirror of
https://github.com/theNewDynamic/gohugo-theme-ananke.git
synced 2025-06-08 17:22:46 +00:00
22 lines
811 B
HTML
Executable File
22 lines
811 B
HTML
Executable File
<footer class="bg-near-black bottom-0 w-100 pa3" role="contentinfo">
|
|
<div class="flex justify-between">
|
|
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="{{ .Site.BaseURL | relLangURL }}" >
|
|
© {{ now.Format "2006" }} {{ .Site.Title }}
|
|
</a>
|
|
<div class="flex-l">
|
|
{{ if .IsTranslated }}
|
|
<a class="f4 fw4 no-underline white-90 dn dib-ns pv2 ph3" href="{{ .Permalink }}">
|
|
{{ .Site.Params.languageName | default .Lang }}
|
|
</a>
|
|
{{ range .Translations }}
|
|
<a class="f4 fw4 hover-white no-underline white-40 dn dib-ns pv2 ph3" href="{{ .Permalink }}">
|
|
{{ .Site.Params.languageName | default .Lang }}
|
|
</a>
|
|
{{ end}}
|
|
{{ end }}
|
|
|
|
{{ partial "social-follow.html" . }}
|
|
</div>
|
|
</div>
|
|
</footer>
|