footer.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {{ if $.Param "enableFooter" }}
  2. <div class="bot">
  3. <footer class="footer">
  4. <div class="divider">
  5. <div class="lmr">
  6. {{ with .Params.footer }}
  7. <div class="footer__section--wrapper">
  8. {{ range .sections }}
  9. <div class="footer__section">
  10. <div class="footer__section--title">
  11. {{ .title }}
  12. </div>
  13. <ul>
  14. {{ range .links }}
  15. <a href="{{ .link }}" class="footer__section--link" target="_blank" rel="noreferrer">
  16. {{ .title }}
  17. </a>
  18. {{ end }}
  19. </ul>
  20. </div>
  21. {{ end }}
  22. </div>
  23. {{ with .contents }}
  24. <div class="footer__contents {{ if .applySinglePageCss }}single__contents{{ end }}">
  25. {{ .markdown | markdownify }}
  26. </div>
  27. {{ end }}
  28. {{ else }}
  29. <p class="caption">
  30. {{ with $.Site.Copyright }}{{ replace . "{year}" now.Year | markdownify }}{{ end }}
  31. </p>
  32. {{ if $.Param "showPoweredBy" }}
  33. <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>
  34. {{ end }}
  35. {{ end }}
  36. </div>
  37. </div>
  38. </footer>
  39. </div>
  40. {{ end }}