dalaran.fr/themes/dalaran/layouts/index.html
2025-01-17 16:33:34 +01:00

22 lines
586 B
HTML

{{ partial "header.html" . }}
<main>
{{ partial "introduction.html" . }}
<section class="articles-list">
<h1>Posts</h1>
{{ range (where .Site.RegularPages "Section" "posts") }}
<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>
</div>
{{ end }}
</section>
</main>
{{ partial "footer.html" . }}