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