2020-04-28 12:26:34 +02:00
|
|
|
{{ 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">
|
2024-10-14 15:40:56 +02:00
|
|
|
{{- range .Pages.ByDate.Reverse -}}
|
2020-04-28 12:26:34 +02:00
|
|
|
{{- .Render "li" -}}
|
|
|
|
{{- end -}}
|
|
|
|
</ul>
|
|
|
|
</article>
|
|
|
|
</section>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|