website/layouts/partials/footer.html

22 lines
602 B
HTML
Raw Normal View History

<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>
</section>
<section class="website-subnav">
<ul>
{{- $currentPage := . }}
{{- range .Site.Menus.footer }}
<li>
<a href="{{ .URL }}">
{{- .Pre }}
<span>{{ .Name }}</span>
</a>
</li>
{{- end }}
</ul>
</section>
</div>
</footer>