1

Nouveau thème pour 2026

This commit is contained in:
2026-02-21 01:50:39 +01:00
parent 27dd5f86e6
commit a7f539ceb4
67 changed files with 6137 additions and 21 deletions

View File

@@ -0,0 +1,37 @@
<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>