14 lines
458 B
HTML
14 lines
458 B
HTML
<footer class="site-footer">
|
|
<div class="site-wrapper">
|
|
<div class="site-footer__inner">
|
|
<span class="site-footer__copy">© {{ now.Format "2006" }} {{ .Site.Title }}</span>
|
|
{{- if .Site.Menus.footer }}
|
|
<nav class="site-footer__links" aria-label="Footer navigation">
|
|
{{- range .Site.Menus.footer }}
|
|
<a href="{{ .URL }}">{{ .Name }}</a>
|
|
{{- end }}
|
|
</nav>
|
|
{{- end }}
|
|
</div>
|
|
</div>
|
|
</footer>
|