website_lea/layouts/theatre/list.html

29 lines
638 B
HTML

{{ 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>