Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/janraasch/hugo-scroll.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Raasch <jan@janraasch.com>2020-07-08 20:26:00 +0300
committerJan Raasch <jan@janraasch.com>2020-07-08 20:26:00 +0300
commit7defcb60fd9186e8d236c7f97143d1dcf5ed68b5 (patch)
tree45f191dd06bdb5842c5416b8872c1d686f1f0dec /layouts
parentb7d97501927d58932880ea164a5849b923abd09e (diff)
feat: markdownify copyright-line
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/footer.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 6b23172..fc0dc8e 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1,9 +1,9 @@
<footer class="site-footer">
<div class="inner">
- {{ with .Site.Params.copyright }}<section class="copyright">{{ . }}</section>{{ end }}
+ {{ with .Site.Params.copyright }}<section class="copyright">{{ . | markdownify }}</section>{{ end }}
<section>{{ echoParam .Site.Params "hidebyline" }}</section>
{{ if ne .Site.Params.hidedesignbyline true }}<section>
<a href="https://themes.gohugo.io/hugo-scroll/">Design</a> template built with ♥️ by <a href="https://www.janraasch.com" title="Jan Raasch">Jan Raasch</a>
</section>{{ end }}
</div>
-</footer> \ No newline at end of file
+</footer>