Files
homepage/themes/Gregroad/layouts/partials/footer_links.html
T
2024-04-22 01:38:32 -05:00

8 lines
226 B
HTML

{{- 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 }}