footer.html 889 B

123456789101112131415161718192021222324
  1. <footer class="footer">
  2. <section class="container">
  3. {{ with .Site.Params.footercontent | safeHTML }}
  4. <p>{{.}}</p>
  5. {{ end }}
  6. {{ if not .Site.Params.hideCopyright }}
  7. {{ with .Site.Params.since }}
  8. © {{ if lt . now.Year }}{{ . }} - {{ end }}{{ now.Year }}
  9. {{ else }}
  10. © {{ now.Year }}
  11. {{ end }}
  12. {{ if .Site.Params.Author }} {{ .Site.Params.Author }} {{ end }}
  13. {{ end }}
  14. {{ if not .Site.Params.hideCredits }}
  15. {{ if not .Site.Params.hideCopyright }} · {{ end }}
  16. {{ i18n "powered_by" }} <a href="https://gohugo.io/">Hugo</a> & <a href="https://github.com/luizdepra/hugo-coder/">Coder</a>.
  17. {{ end }}
  18. {{ if .Site.Params.commit }}
  19. {{ if .GitInfo }}
  20. [<a href="{{ .Site.Params.commit }}/{{ .GitInfo.Hash }}">{{ .GitInfo.AbbreviatedHash }}</a>]
  21. {{ end }}
  22. {{ end }}
  23. </section>
  24. </footer>