devroom.io/layouts/index.html

19 lines
572 B
HTML
Raw Normal View History

2015-03-26 11:28:08 +00:00
{{ partial "header.html" . }}
2017-09-11 12:20:15 +00:00
<div class="posts">
{{ range (where .Data.Pages "Section" "posts") }}
2017-03-08 12:50:16 +00:00
<article id="{{ .Slug }}">
<h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
<p>
2017-09-11 12:20:15 +00:00
<time class="date" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2 January 2006" }}</time>
{{ if .Description }}
&mdash;
{{ .Description | safeHTML }}
{{ end }}
</p>
2017-03-08 12:50:16 +00:00
</article>
2016-02-16 20:42:17 +00:00
{{ end }}
2016-08-24 11:12:08 +00:00
</div>
2015-03-26 11:28:08 +00:00
{{ partial "footer.html" . }}