24 lines
459 B
HTML
24 lines
459 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">
|
||
|
{{ i18n "articles" | title }}
|
||
|
</h1>
|
||
|
</header>
|
||
|
<ul class="articles-list">
|
||
|
{{- range .Paginator.Pages -}}
|
||
|
{{- .Render "li" -}}
|
||
|
{{- end -}}
|
||
|
</ul>
|
||
|
</article>
|
||
|
{{ partial "pagination.html" . }}
|
||
|
</section>
|
||
|
</main>
|
||
|
</body>
|
||
|
</html>
|