accessible.tips/themes/hugo-xmin/layouts/partials/footer.html

25 lines
675 B
HTML

<footer>
{{ partial "foot_custom.html" . }}
<hr/>
{{ if .Page.Params.toc }}
<a class="back_to_top" href="#top">Back to ToC</a>
{{ else }}
<a class="back_to_top" href="#top">Back to top</a>
{{ end }}
&nbsp;|&nbsp;<a class="back_to_top" href="#page_menu">Back to page menu</a>
&nbsp;|&nbsp;<a class="back_to_top" href="#nav_menu">Back to site menu</a>
{{ with .Site.Params.footer }}
<br />{{ replace . "{Year}" now.Year | markdownify}}
{{ end }}
{{ if .GitInfo}}
<br />
Revision <a href="https://github.com/mcrosson/accessible.tips/commit/{{ .GitInfo.Hash }}" rel="noopener">{{ .GitInfo.Hash }}</a>
{{ end }}
</footer>
</body>
</html>