1
mirror of https://github.com/jlelse/GoBlog synced 2024-06-18 02:35:00 +00:00
GoBlog/templates/footer.gohtml

12 lines
423 B
Plaintext
Raw Normal View History

2020-11-01 17:37:21 +00:00
{{ define "footer" }}
<footer>
{{ with menu .Blog "footer" }}
{{ $first := true }}
{{ range $i, $item := .Items }}
{{ if ne $first true }} &bull; {{ end }}<a
href="{{ $item.Link }}">{{ $item.Title }}</a>{{ $first = false }}
{{ end }}
{{ end }}
<p>&copy; {{ dateformat now "2006" }} {{ .Blog.Title }}</p>
</footer>
{{ end }}