themes/hugo-coder/layouts/partials/footer.html
64c6cae85faf11d75ab3de1685916d87dbf18197
· 980 B · 26 lines
raw
| 1 | {{ if not .Site.Params.hideFooter | default false }} |
| 2 | <footer class="footer"> |
| 3 | <section class="container"> |
| 4 | {{ with .Site.Params.footerContent | safeHTML }} |
| 5 | <p>{{ . }}</p> |
| 6 | {{ end }} |
| 7 | {{ if not .Site.Params.hideCopyright }} |
| 8 | © |
| 9 | {{ if (and (.Site.Params.since) (lt .Site.Params.since now.Year)) }} |
| 10 | {{ .Site.Params.since }} - |
| 11 | {{ end }} |
| 12 | {{ now.Year }} |
| 13 | {{ with .Site.Params.author }} {{ . }} {{ end }} |
| 14 | {{ end }} |
| 15 | {{ if not .Site.Params.hideCredits }} |
| 16 | {{ if not .Site.Params.hideCopyright }} · {{ end }} |
| 17 | {{ i18n "powered_by" }} <a href="https://gohugo.io/">Hugo</a> & <a href="https://github.com/luizdepra/hugo-coder/">Coder</a>. |
| 18 | {{ end }} |
| 19 | {{ if .Site.Params.commit }} |
| 20 | {{ if .GitInfo }} |
| 21 | [<a href="{{ .Site.Params.commit }}/{{ .GitInfo.Hash }}">{{ .GitInfo.AbbreviatedHash }}</a>] |
| 22 | {{ end }} |
| 23 | {{ end }} |
| 24 | </section> |
| 25 | </footer> |
| 26 | {{ end }} |