1
Files
2025/themes/2026/layouts/_partials/footer.html
2026-02-21 01:50:39 +01:00

38 lines
1.1 KiB
HTML

<footer>
<nav aria-label="Navigation principale">
<ul>
{{- range site.Menus.main -}}
<li>
<h2>
{{- if .PageRef -}}
<a href="{{ .PageRef }}" title="{{ .Title }}">{{ .Name }}</a>
{{- else -}}
<span>{{ .Name }}</span>
{{- end -}}
</h2>
{{- if gt (len .Children) 0 -}}
<ul>
{{- range .Children -}}
<li>
{{- if .PageRef -}}
<a href="{{ .PageRef }}" title="{{ .Title }}">{{ .Name }}</a>
{{- else -}}
<span title="{{ .Title }}">{{ .Name }}</span>
{{- end -}}
</li>
{{- end -}}
</ul>
{{- end -}}
</li>
{{- end -}}
</ul>
</nav>
<p>
<span>{{ .Site.Copyright | safeHTML }}</span>
<span>
Sauf mention contraire, l'intégralité du contenu de ce site est disponible sous licence
<a href="https://creativecommons.org/licenses/by-nc-nd/4.0/deed.fr" title="Consulter la licence Creative Commons CC BY-NC-ND 4.0">CC BY-NC-ND</a>.
</span>
</p>
</footer>