1
0
mirror of https://github.com/alanorth/hugo-theme-bootstrap4-blog.git synced 2025-05-07 21:16:00 +02:00

layouts/_default/baseof.html: Allow configuration of footer text

Uses the "copyright" parameter from the site's config that is pretty
standard among Hugo themes. Content can contain Markdown.
This commit is contained in:
2016-10-09 13:36:07 +03:00
parent 2eb07f4238
commit 77b2cf9955

View File

@ -55,7 +55,11 @@
<footer class="blog-footer">
<p>
{{ if .Site.Copyright }}
{{ .Site.Copyright | markdownify }}
{{ else }}
Blog template built by <a href='https://twitter.com/mralanorth'>@mralanorth</a>.
{{ end }}
</p>
</footer>