20 lines
559 B
HTML
20 lines
559 B
HTML
{{ 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" . }}
|