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

20 lines
559 B
HTML
Raw Normal View History

2024-09-28 12:53:17 +02:00
{{ partial "header.html" . }}
{{ partial "profile.html" . }}
<main>
<section class="articles-list">
<div class="articles-header">
<h2>Posts</h2>
<small>
<a href="index.xml">[RSS]</a>
</small>
</div>
{{ range (where .Site.RegularPages "Section" "posts") }}
<div class="article">
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">[{{ .Date.Format "2006-01-02" }}]</time>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</div>
{{ end }}
</section>
</main>
{{ partial "footer.html" . }}