devroom.io/themes/outerspace/layouts/_default/list.html

19 lines
535 B
HTML
Raw Normal View History

2015-03-26 11:28:08 +00:00
{{ partial "header.html" . }}
2016-01-06 14:44:01 +00:00
<ul class="posts">
2015-03-26 11:28:08 +00:00
{{ range .Data.Pages }}
<article id="{{ .Slug }}" class="teaser-post">
2015-07-02 08:36:38 +00:00
<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>
2015-03-26 11:28:08 +00:00
</article>
{{ end }}
2016-01-06 14:44:01 +00:00
</ul>
2015-03-26 11:28:08 +00:00
{{ partial "footer.html" . }}