| 123456789101112131415161718192021222324 |
- <footer class="footer">
- <section class="container">
- {{ with .Site.Params.footercontent | safeHTML }}
- <p>{{.}}</p>
- {{ end }}
- {{ if not .Site.Params.hideCopyright }}
- {{ with .Site.Params.since }}
- © {{ if lt . now.Year }}{{ . }} - {{ end }}{{ now.Year }}
- {{ else }}
- © {{ now.Year }}
- {{ end }}
- {{ if .Site.Params.Author }} {{ .Site.Params.Author }} {{ end }}
- {{ end }}
- {{ if not .Site.Params.hideCredits }}
- {{ if not .Site.Params.hideCopyright }} · {{ end }}
- {{ i18n "powered_by" }} <a href="https://gohugo.io/">Hugo</a> & <a href="https://github.com/luizdepra/hugo-coder/">Coder</a>.
- {{ end }}
- {{ if .Site.Params.commit }}
- {{ if .GitInfo }}
- [<a href="{{ .Site.Params.commit }}/{{ .GitInfo.Hash }}">{{ .GitInfo.AbbreviatedHash }}</a>]
- {{ end }}
- {{ end }}
- </section>
- </footer>
|