website/layouts/partials/footer.html

30 lines
666 B
HTML
Raw Normal View History

2020-09-14 16:24:02 +02:00
<footer>
<div class="container">
<section class="website-version">
2020-09-17 21:51:17 +02:00
<span>version {{ .Site.Params.version }}</span>
2020-09-14 16:24:02 +02:00
</section>
<section class="website-subnav">
<ul>
{{ $currentPage := . }}
{{ range .Site.Menus.main }}
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 }}
<li>|</li>
{{ range .Site.Menus.links }}
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>