mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-13 00:30:41 +00:00
Robert Kaussow
82f95b1766
* feat: add optional extra menu to site navigations * add extra menu documentation * rename menu to menu-extra * feat: add optional extra menu to site navigations * add extra menu documentation * rename menu to menu-extra * fix spellcheck
39 lines
1.7 KiB
HTML
39 lines
1.7 KiB
HTML
<footer class="gblog-footer">
|
|
<nav class="container">
|
|
<section class="flex flex-wrap align-center">
|
|
{{ with (.Site.GetPage "home").OutputFormats.Get "atom" }}
|
|
<span class="gblog-footer__item">
|
|
<svg class="icon rss_feed"><use xlink:href="#rss_feed"></use></svg>
|
|
<a href='{{ .Permalink | relURL }}' class="gblog-footer__link">Atom Feed</a>
|
|
</span>
|
|
{{ end }}
|
|
{{ if .Site.Data.menu.extra.footer }}
|
|
{{ partial "menu-extra" (dict "current" . "source" .Site.Data.menu.extra.footer "target" "footer") }}
|
|
{{ end }}
|
|
{{ with .Site.Params.GeekblogLegalNotice }}
|
|
<span class="gblog-footer__item">
|
|
<a href="{{ . | relURL }}" class="gblog-footer__link">Legal Notice</a>
|
|
</span>
|
|
{{ end }}
|
|
{{ with .Site.Params.GeekblogPrivacyPolicy }}
|
|
<span class="gblog-footer__item">
|
|
<a href="{{ . | relURL }}" class="gblog-footer__link">Privacy Policy</a>
|
|
</span>
|
|
{{ end }}
|
|
</section>
|
|
<section class="flex flex-wrap align-center">
|
|
<span class="gblog-footer__item">
|
|
Built with <a href="https://gohugo.io/" class="gblog-footer__link">Hugo</a> and
|
|
<svg class="icon heart"><use xlink:href="#heart"></use></svg>
|
|
</span>
|
|
</section>
|
|
{{ with .Site.Params.GeekblogHostedOn }}
|
|
<section class="flex flex-wrap align-center">
|
|
<span class="gblog-footer__item">
|
|
Hosted on <a href="{{ .link }}" class="gblog-footer__link">{{ .name }}</a>
|
|
</span>
|
|
</section>
|
|
{{ end }}
|
|
</nav>
|
|
</footer>
|