28 lines
620 B
HTML
28 lines
620 B
HTML
{{ partial "header.html" . }}
|
|
<body>
|
|
<main class="wrapper">
|
|
{{ partial "navigation.html" . }}
|
|
|
|
<section id="blog-list" class="container liste">
|
|
<article>
|
|
<header>
|
|
<h1 class="list-title">
|
|
{{ if eq .Kind "taxonomy" }}
|
|
{{ i18n .Data.Plural 1 | title }}: {{ .Title }}
|
|
{{ else if eq .Kind "taxonomyTerm" }}
|
|
{{ i18n .Data.Plural | title }}
|
|
{{ end }}
|
|
</h1>
|
|
</header>
|
|
<ul class="articles-list">
|
|
{{- range .Paginator.Pages -}}
|
|
{{- .Render "li" -}}
|
|
{{- end -}}
|
|
</ul>
|
|
</article>
|
|
{{ .Content }}
|
|
{{ partial "pagination.html" . }}
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html>
|