Modifie l’agencement des onglets

This commit is contained in:
Gregory Trolliet 2025-02-02 21:45:08 +01:00
parent b20b81e79e
commit f445c8588d
90 changed files with 356 additions and 152 deletions

29
layouts/theatre/list.html Normal file
View file

@ -0,0 +1,29 @@
{{ partial "header.html" . }}
<body>
<main class="wrapper">
{{ partial "navigation.html" . }}
<section id="site-page" class="container page">
<article>
{{ partial "theatre_top.md" | markdownify }}
<header>
<h1 class="list-title">
{{ i18n "articles" | title }}
</h1>
</header>
<div class="archives-list">
{{- range .Paginator.Pages -}}
{{ if in .Params.categories "Spectacle" }}
{{- .Render "li" -}}
{{- end -}}
{{- end -}}
</div>
<p>
{{ partial "theatre_bot.md" | markdownify }}
</p>
</article>
{{ partial "pagination.html" . }}
</section>
</main>
</body>
</html>