mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-05 12:50:45 +00:00
Robert Kaussow
42968b6a30
BREAKING CHANGE: The icon gdoc_telescope was removed. If you are using this icon you have to replace it. Build-in icons are prefixed with gdoc_ now. If you use built-in icons in e.g. menus you have to rename these references!
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 gblog_rss_feed"><use xlink:href="#gblog_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 gblog_heart"><use xlink:href="#gblog_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>
|