dalaran.fr/themes/dalaran/layouts/index.html

23 lines
586 B
HTML
Raw Permalink Normal View History

2024-09-28 12:53:17 +02:00
{{ partial "header.html" . }}
<main>
2025-01-14 16:52:36 +01:00
{{ partial "introduction.html" . }}
2024-09-28 12:53:17 +02:00
<section class="articles-list">
2025-01-14 16:52:36 +01:00
<h1>Posts</h1>
2024-09-28 12:53:17 +02:00
{{ range (where .Site.RegularPages "Section" "posts") }}
2025-01-14 16:52:36 +01:00
<div>
<a href="{{ .Permalink }}">
<h2>{{ .Title }}</h2>
</a>
<div class="article-info">
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
{{ .Date | time.Format ":date_medium" }}
</time>
-
{{ .ReadingTime }} minutes read
</div>
2024-09-28 12:53:17 +02:00
</div>
{{ end }}
</section>
</main>
{{ partial "footer.html" . }}