15 lines
410 B
HTML
15 lines
410 B
HTML
<footer>
|
|
{{ partial "foot_custom.html" . }}
|
|
{{ with .Site.Params.footer }}
|
|
<hr/>
|
|
<a class="back_to_top" href="#top">Back to top</a>
|
|
<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>
|