5c5e2d59cb
BREAKING CHANGE: We have replaced `gulp` with `webpack` and `npm scripts` to build this theme. If you build it on your own or use build commands during the deployment, you may have to adjust your setup. BREAKING CHANGE: The `GeekblogIcons` font is using the icon name as Unicode now. As a consequence, you have to replace all references to Icons from this font if you have customized the theme. BREAKING CHANGE: We have refactored the search integration to split Hugo templates from JavaScript code. To get it working again, you need to adjust the `outputFormats` and `outputs` in your Hugo configuration file, as [documented](https://geekdocs.de/usage/configuration/#site-configuration).
32 lines
1.3 KiB
HTML
32 lines
1.3 KiB
HTML
<footer class="gdoc-footer">
|
|
<div class="container flex">
|
|
<div class="flex flex-wrap">
|
|
<span class="gdoc-footer__item gdoc-footer__item--row">
|
|
Built with <a href="https://gohugo.io/" class="gdoc-footer__link">Hugo</a> and
|
|
<svg class="icon gdoc_heart"><use xlink:href="#gdoc_heart"></use></svg>
|
|
</span>
|
|
{{ with .Site.Params.GeekdocLegalNotice }}
|
|
<span class="gdoc-footer__item gdoc-footer__item--row">
|
|
<a href="{{ . | relURL }}" class="gdoc-footer__link">Legal Notice</a>
|
|
</span>
|
|
{{ end }}
|
|
{{ with .Site.Params.GeekdocPrivacyPolicy }}
|
|
<span class="gdoc-footer__item gdoc-footer__item--row">
|
|
<a href="{{ . | relURL }}" class="gdoc-footer__link">Privacy Policy</a>
|
|
</span>
|
|
{{ end }}
|
|
</div>
|
|
{{ if (default true .Site.Params.GeekdocBackToTop) }}
|
|
<div class="flex flex-25 justify-end">
|
|
<span class="gdoc-footer__item text-right">
|
|
<a class="gdoc-footer__link fake-link" href="#" aria-label="Back to top">
|
|
<svg class="icon gdoc_keyborad_arrow_up">
|
|
<use xlink:href="#gdoc_keyborad_arrow_up"></use>
|
|
</svg>
|
|
<span class="hidden-mobile">Back to top</span>
|
|
</a>
|
|
</span>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</footer>
|