mirror of
https://github.com/loikein/hugo-tufte.git
synced 2024-11-15 04:46:58 +01:00
82958f2609
Theme should be useable, but there might be some minor stylistic tweaks here and there.
28 lines
685 B
HTML
28 lines
685 B
HTML
<footer class="page-footer">
|
|
<hr>
|
|
<ul class="page-footer-menu">
|
|
{{ 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>.
|
|
</p>
|
|
{{ end }}
|
|
|
|
<div class="copyright">
|
|
<p>
|
|
{{ with .Site.Params.copyright }}
|
|
{{ . | safeHTML }}
|
|
{{ else }}
|
|
© {{.Now.Format "2006"}}
|
|
{{ with .Site.Params.copyrightHolder }}{{ . }}{{end}}.
|
|
All rights reserved.
|
|
{{end}}
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
{{ partial "body.includes.html" . }}
|