2020-07-09 21:15:38 +02:00
|
|
|
<footer class="common-footer">
|
|
|
|
{{ $languagesCount := $.Site.Home.AllTranslations }}
|
|
|
|
{{ if gt $languagesCount 1 }}
|
|
|
|
{{ partial "languageSelect.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
|
2020-07-30 20:35:13 +02:00
|
|
|
<div class="common-footer-bottom">
|
2020-07-30 21:50:34 +02:00
|
|
|
{{ if .Site.Menus.footer }}
|
|
|
|
{{ $currentPage := . }}
|
|
|
|
<ul class="footer-menu">
|
|
|
|
{{ range .Site.Menus.footer }}
|
|
|
|
<li><a class="{{if or ($currentPage.IsMenuCurrent "footer" .) ($currentPage.HasMenuCurrent "footer" .) }} active{{end}}" href="{{ .URL | absLangURL }}" title="{{ .Title }}">{{ .Name }}</a></li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
2020-07-25 22:47:39 +02:00
|
|
|
{{ end }}
|
2020-07-30 20:35:13 +02:00
|
|
|
<div class="copyright">
|
|
|
|
<p>© {{ if isset .Site.Params "author"}}{{ .Site.Params.author }}, {{end}}{{ now.Year }}<br>
|
2021-02-23 21:49:44 +01:00
|
|
|
{{ i18n "powered" | humanize }} <a target="_blank" rel="noopener noreferrer" href="https://gohugo.io/">Hugo</a>, {{ i18n "theme" }} <a target="_blank" rel="noopener noreferrer" href="https://github.com/mitrichius/hugo-theme-anubis">Anubis</a>.<br>
|
|
|
|
{{ partial "footer-extra.html" . }}
|
2020-07-30 20:35:13 +02:00
|
|
|
</p>
|
|
|
|
</div>
|
2020-08-12 21:25:08 +02:00
|
|
|
|
|
|
|
{{ partial "themeSwitcher.html" . }}
|
2020-07-30 20:35:13 +02:00
|
|
|
</div>
|
2021-01-11 19:39:27 +01:00
|
|
|
|
2021-01-20 19:10:47 +01:00
|
|
|
{{ partial "h-card.html" . }}
|
2020-07-09 21:15:38 +02:00
|
|
|
</footer>
|