blog-theme/layouts/partials/footer.html
2023-02-18 16:42:54 -08:00

13 lines
557 B
HTML

<footer>
<span style="word-spacing: 1ch">
{{ range .Site.Sections }}
<a href="{{.RelPermalink }}">{{ .Title }}</a>
{{ end }}
{{ range $taxonomyname, $taxonomy := .Site.Taxonomies }}
{{ if $taxonomy }}<a href="{{ "/" | relLangURL }}{{ $taxonomyname | urlize }}/">{{ $taxonomyname | title }}</a> {{ end }}
{{ end }}
</span><br>
Copyright &copy; {{ dateFormat "2006" now }} <b>{{ .Site.Title }}</b>. All rights reserved.<br>
Site last regenerated with <a href="https://gohugo.io/">Hugo</a> at {{ partial "time.html" (dict "Date" now) }}
</footer>