summaryrefslogtreecommitdiff
path: root/themes/new_theme/layouts/partials/footer_links.html
blob: 04523e8e2f12feb00cc51c3103d46c78a84d6f5e (plain)
1
2
3
4
5
6
7
8
{{- with .Site.Menus.footer }}
<div class="footer__links">
	{{ range $key, $value := . }}
		{{- if ne $key 0 }} | {{ end -}}
		<a class="footer__link" href="{{ $value.Permalink }}">{{ $value.Name }}</a>
	{{- end }}
</div>
{{- end }}