devroom.io/layouts/_default/list.html

14 lines
383 B
HTML
Raw Normal View History

2015-03-26 11:28:08 +00:00
{{ partial "header.html" . }}
2016-02-16 20:42:17 +00:00
<section class="posts">
2015-03-26 11:28:08 +00:00
{{ range .Data.Pages }}
2017-03-20 13:11:15 +00:00
<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>
2015-03-26 11:28:08 +00:00
{{ end }}
2016-02-16 20:42:17 +00:00
</section>
2015-03-26 11:28:08 +00:00
{{ partial "footer.html" . }}