footer.html 565 B

12345678910111213141516
  1. {{ if $.Param "enableFooter" }}
  2. <div class="bot">
  3. <footer class="footer">
  4. <div class="divider">
  5. <div class="lmr">
  6. <p class="caption">
  7. {{ with $.Site.Copyright }}{{ replace . "{year}" now.Year | markdownify}}{{ end }}
  8. </p>
  9. {{ if $.Param "showPoweredBy" }}
  10. <p class="caption">Powered by <a href="https://gohugo.io/" rel="noreferrer">Hugo</a> and the <a href="https://github.com/zzossig/hugo-theme-zdoc" rel="noreferrer">zDoc theme</a></p>
  11. {{ end }}
  12. </div>
  13. </div>
  14. </footer>
  15. </div>
  16. {{ end }}