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

github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicky <vicky@vickylai.com>2018-06-12 19:31:25 +0300
committerVicky <vicky@vickylai.com>2018-06-12 19:31:25 +0300
commit256166e66b8f6079bdfb423654a6507b5392c606 (patch)
treeb2d647166b21d60aba91be1bfa7c4d700945cfee
parent97cdc2aaeaf0d705c011f5fc78241512288ed604 (diff)
parentf189be2162c8795c8ce3723189d5f93fb9b3bd0a (diff)
Merge branch 'markdownify' of https://github.com/Hanzei/hugo-theme-introduction into Hanzei-markdownify
-rw-r--r--layouts/partials/footer.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 67b8b36..78dc47c 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1,9 +1,9 @@
<div class="section" id="footer"><!-- Begin Footer section -->
<div class="container has-text-centered"><!-- Begin Footer container -->
- {{ if .Site.Params.footerText }}
- {{ .Site.Params.footerText }}
- {{ else }}
+ {{ if .Site.Params.footerText }}
+ {{ .Site.Params.footerText | markdownify }}
+ {{ else }}
<span class="footer-text"><a href="https://github.com/vickylai/hugo-theme-introduction" target="_blank" rel="noopener">Introduction</a> theme for <a href="http://gohugo.io/" target="_blank" rel="noopener">Hugo</a>. Made with <i class="fa fa-heart"></i> and <i class="fa fa-coffee"></i> by <a href="https://vickylai.com" target="_blank" rel="noopener">Vicky Lai</a>.</span>
- {{ end }}
+ {{ end }}
</div><!-- End Footer container -->
</div><!-- End Footer section -->