website/layouts/partials/footer.html

21 lines
516 B
HTML
Raw Normal View History

2020-09-14 16:24:02 +02:00
<footer>
<div class="container">
<section class="website-version">
<span title="{{ now.Format "2. January 2006, 15:04 MST" }}">version {{ now.Format "2006-01-02" }}</span>
2020-09-14 16:24:02 +02:00
</section>
<section class="website-subnav">
<ul>
{{ $currentPage := . }}
2020-09-20 19:52:34 +02:00
{{ range .Site.Menus.footer }}
2020-09-17 21:51:17 +02:00
<li>
<a href="{{ .URL }}">
{{ .Pre }}
<span>{{ .Name }}</span>
</a>
</li>
2020-09-14 16:24:02 +02:00
{{ end }}
</ul>
</section>
</div>
</footer>