hugo-tufte/layouts/partials/footer.html

28 lines
647 B
HTML
Raw Normal View History

<footer class="page-footer">
<hr>
<ul class="page-footer-menu">
2015-12-30 03:35:20 +01:00
{{ range .Site.Menus.footer }}
<li><a href="{{.URL}}">{{.Pre }}{{ .Name }}</a></li>
{{ end }}
</ul>
{{ if .Site.Params.showPoweredBy}}
<p>
Powered by <a href="https://gohugo.io">Hugo</a> and the
<a href="https://github.com/shawnohare/hugo-tufte">Tufte theme</a>.
2015-12-30 03:35:20 +01:00
</p>
{{ end }}
<div class="copyright">
<p>
{{ with .Site.Params.copyright }}
{{ . | safeHTML }}
{{ else }}
2018-01-02 01:10:52 +01:00
&copy; {{now.Format "2006"}}
2015-12-30 03:35:20 +01:00
{{ with .Site.Params.copyrightHolder }}{{ . }}{{end}}.
All rights reserved.
{{end}}
</p>
</div>
</footer>