Nouveau thème pour 2026
This commit is contained in:
37
themes/2026/layouts/_partials/footer.html
Normal file
37
themes/2026/layouts/_partials/footer.html
Normal 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>
|
||||
Reference in New Issue
Block a user