devroom.io/layouts/_default/list.html
2017-03-20 14:11:15 +01:00

14 lines
383 B
HTML

{{ partial "header.html" . }}
<section class="posts">
{{ range .Data.Pages }}
<article id="{{ .Slug }}">
<h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
<p><time class="date" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2 January 2006" }}</time></p>
</article>
{{ end }}
</section>
{{ partial "footer.html" . }}