Welcome to mirror list, hosted at ThFree Co, Russian Federation.

footer_links.html « partials « layouts - github.com/pfadfinder-konstanz/hugo-dpsg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b86860dd75ba0e82adc615843fc507aa987ad264 (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.URL }}">{{ $value.Name }}</a>
	{{- end }}
</div>
{{- end }}