hugo-scroll/layouts/partials/footer.html

19 lines
684 B
HTML
Raw Normal View History

2020-07-07 08:37:57 +00:00
<footer class="site-footer">
2020-09-09 16:00:59 +00:00
<div class="inner">
{{ with .Site.Params.copyright }}
<section class="copyright">{{ . | markdownify }}</section>{{ end }}
<section>{{ echoParam .Site.Params "hidebyline" }}</section>
{{ if ne .Site.Params.hidedesignbyline true }}
<section>
<!-- TODO: Change link to https://themes.gohugo.io/hugo-scroll/ once
https://github.com/gohugoio/hugoThemes/issues/881 is solved. -->
2020-09-09 16:00:59 +00:00
<a href="https://github.com/janraasch/hugo-scroll/">Design</a> template
built with ♥️ by
<a href="https://www.janraasch.com" title="Jan Raasch">Jan Raasch</a>
</section>{{ end }}
</div>
2020-07-08 17:26:00 +00:00
</footer>