You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.7 KiB
37 lines
1.7 KiB
<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>. Copyright © 1998 - 2021 Linux User Group Frankfurt (FraLUG) e.V. |
|
</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>
|
|
|