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,25 @@
{{ define "main" }}
{{ partial "article-header.html" . }}
<main>
<article>
{{ .Content }}
<section>
<header><h2>Taxonomies</h2></header>
<ul>
{{- range $taxonomy, $terms := .Site.Taxonomies -}}
{{- with $.Site.GetPage $taxonomy -}}
<li>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
<sub>{{ len $terms }}</sub>
</li>
{{- end -}}
{{- end -}}
</ul>
</section>
{{ partial "article-footer.html" . }}
</article>
{{ partial "asides/toc.html" . }}
</main>
{{ end }}