devroom.io/themes/outerspace/layouts/index.html
2015-03-26 12:28:08 +01:00

19 lines
564 B
HTML

{{ partial "header.html" . }}
<section class="posts">
{{ range where .Data.Pages "Section" "posts" }}
<article id="{{ .Slug }}" class="teaser-post">
<h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
<time class="date">{{ .Date.Format "2 January, 2006" }}</time>
<ul class="tags">
{{ range .Params.tags }}
<li><a href="/tags/{{ . | urlize }}">{{ . }}</a></li>
{{ end }}
</ul>
<div class="separator"></div>
</article>
{{ end }}
</section>
{{ partial "footer.html" . }}