GoBlog/templates/footer.gohtml

10 lines
408 B
Plaintext
Raw Normal View History

2020-11-01 17:37:21 +00:00
{{ define "footer" }}
<footer>
{{ with menu .Blog "footer" }}
{{ range $i, $item := .Items }}
2020-11-22 08:11:57 +00:00
{{ if ne $i 0 }} &bull; {{ end }}<a href="{{ $item.Link }}">{{ $item.Title }}</a>
2020-11-01 17:37:21 +00:00
{{ end }}
{{ end }}
<p translate="no">&copy; {{ dateformat now "2006" }} {{ with user.Name }}{{ . }}{{ else }}{{ .Blog.Title }}{{ end }}</p>
2020-11-01 17:37:21 +00:00
</footer>
{{ end }}