1
mirror of https://github.com/jlelse/GoBlog synced 2024-06-01 23:44:27 +00:00
GoBlog/templates/footer.gohtml
2020-11-09 17:04:20 +01:00

12 lines
469 B
Plaintext

{{ 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" }} {{ with user.Name }}{{ . }}{{ else }}{{ .Blog.Title }}{{ end }}</p>
</footer>
{{ end }}