devroom.io/themes/outerspace/layouts/_default/list.html
2015-07-02 10:36:38 +02:00

19 lines
545 B
HTML

{{ partial "header.html" . }}
<section class="posts">
{{ range .Data.Pages }}
<article id="{{ .Slug }}" class="teaser-post">
<h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
<p class="meta">
<time class="date" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2 January, 2006" }}</time>
• tagged {{ partial "post/tag/list" . }}
• {{ .WordCount }} words
• ~{{ .ReadingTime }} minutes
</p>
</article>
{{ end }}
</section>
{{ partial "footer.html" . }}