GoBlog/templates/footer.gohtml

16 lines
857 B
Plaintext
Raw Normal View History

2020-11-01 17:37:21 +00:00
{{ define "footer" }}
<footer>
{{ with index .Blog.Menus "footer" }}
2021-08-04 21:26:38 +00:00
<nav>{{ range $i, $item := .Items }}{{ if ne $i 0 }} &bull; {{ end }}<a href="{{ $item.Link }}">{{ mdtitle $item.Title }}</a>{{ end }}
2021-06-24 17:09:59 +00:00
</nav>
2020-11-01 17:37:21 +00:00
{{ end }}
2021-08-04 21:26:38 +00:00
<p translate="no">&copy; {{ dateformat now "2006" }} {{ with .User.Name }}{{ . }}{{ else }}{{ mdtitle .Blog.Title }}{{ end }}</p>
2021-05-09 12:42:53 +00:00
{{ if .TorUsed }}
2021-06-24 17:09:59 +00:00
<p id="tor">🔐 {{ string .Blog.Lang "connectedviator" }}</p>
2021-05-09 12:42:53 +00:00
{{ else }}
{{ if .TorAddress }}
2021-06-24 17:09:59 +00:00
<p id="tor">🔓 <a href="{{ .TorAddress }}">{{ string .Blog.Lang "connectviator" }}</a> <a href="https://www.torproject.org/" target="_blank" rel="nofollow noopener noreferrer">{{ string .Blog.Lang "whatistor" }}</a></p>
2021-05-09 12:42:53 +00:00
{{ end }}
{{ end }}
2020-11-01 17:37:21 +00:00
</footer>
{{ end }}