2020-07-06 18:55:32 +00:00
|
|
|
<footer class="gblog-footer">
|
2021-12-30 14:55:55 +00:00
|
|
|
<nav class="container flex">
|
|
|
|
<div>
|
|
|
|
<section class="flex flex-wrap align-center">
|
|
|
|
{{ with (.Site.GetPage "home").OutputFormats.Get "atom" }}
|
|
|
|
<span class="gblog-footer__item gblog-footer__item--row">
|
2022-04-30 11:36:39 +00:00
|
|
|
<svg class="gblog-icon gblog_rss_feed"><use xlink:href="#gblog_rss_feed"></use></svg>
|
2021-12-30 14:55:55 +00:00
|
|
|
<a href="{{ .Permalink | relURL }}" class="gblog-footer__link">Atom Feed</a>
|
|
|
|
</span>
|
2021-11-20 21:49:56 +00:00
|
|
|
{{ end }}
|
2021-12-30 14:55:55 +00:00
|
|
|
{{ if .Site.Data.menu.extra.footer }}
|
|
|
|
{{ partial "menu-extra" (dict "current" . "source" .Site.Data.menu.extra.footer "target" "footer") }}
|
|
|
|
{{ end }}
|
2023-06-22 08:52:32 +00:00
|
|
|
{{ with .Site.Params.geekblogLegalNotice }}
|
2021-12-30 14:55:55 +00:00
|
|
|
<span class="gblog-footer__item gblog-footer__item--row">
|
|
|
|
<a href="{{ . | relURL }}" class="gblog-footer__link">Legal Notice</a>
|
|
|
|
</span>
|
|
|
|
{{ end }}
|
2023-06-22 08:52:32 +00:00
|
|
|
{{ with .Site.Params.geekblogPrivacyPolicy }}
|
2021-12-30 14:55:55 +00:00
|
|
|
<span class="gblog-footer__item gblog-footer__item--row">
|
|
|
|
<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
|
2022-04-30 11:36:39 +00:00
|
|
|
<svg class="gblog-icon gblog_heart"><use xlink:href="#gblog_heart"></use></svg>
|
2021-12-30 14:55:55 +00:00
|
|
|
</span>
|
|
|
|
</section>
|
2023-06-22 08:52:32 +00:00
|
|
|
{{ with .Site.Params.geekblogHostedOn }}
|
2021-12-30 14:55:55 +00:00
|
|
|
<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 }}
|
2023-06-22 08:52:32 +00:00
|
|
|
{{ with .Site.Params.geekblogContentLicense }}
|
2021-12-30 14:55:55 +00:00
|
|
|
<section class="flex flex-wrap align-center">
|
|
|
|
<span class="gblog-footer__item">
|
|
|
|
Content licensed under
|
|
|
|
<a href="{{ .link }}" class="gblog-footer__link no-wrap">{{ .name }}</a>
|
|
|
|
</span>
|
|
|
|
</section>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2023-06-22 08:52:32 +00:00
|
|
|
{{ if (default true .Site.Params.geekblogBackToTop) }}
|
2021-12-30 14:55:55 +00:00
|
|
|
<div class="flex flex-25 justify-end">
|
|
|
|
<span class="gblog-footer__item text-right">
|
|
|
|
<a class="gblog-footer__link fake-link" href="#" aria-label="Back to top">
|
2022-04-30 11:36:39 +00:00
|
|
|
<svg class="gblog-icon gblog_keyboard_arrow_up">
|
2022-02-22 21:31:49 +00:00
|
|
|
<use xlink:href="#gblog_keyboard_arrow_up"></use>
|
2021-12-30 14:55:55 +00:00
|
|
|
</svg>
|
|
|
|
<span class="hidden-mobile">Back to top</span>
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</nav>
|
2020-07-06 18:55:32 +00:00
|
|
|
</footer>
|