devroom.io/layouts/index.html

28 lines
909 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">
{{ range first 10 (where .Data.Pages "Section" "posts") }}
<article id="{{ .Slug }}" class="teaser-post">
<h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
2016-08-22 11:02:47 +00:00
<p class="description">
<span class="meta">
<time class="date" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2 January 2006" }}</time>
</span>
{{ .Description | safeHTML }}
</p>
2016-02-16 20:42:17 +00:00
</article>
2015-03-26 11:28:08 +00:00
{{ end }}
2016-01-06 14:44:01 +00:00
2016-02-16 20:42:17 +00:00
{{ range after 10 (where .Data.Pages "Section" "posts") }}
<article id="{{ .Slug }}" class="teaser-post">
2016-08-22 11:02:47 +00:00
<h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
2016-02-16 20:42:17 +00:00
<p class="meta">
2016-08-22 11:02:47 +00:00
<time class="date" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2 January 2006" }}</time>
2016-02-16 20:42:17 +00:00
</p>
</article>
{{ end }}
2015-03-26 11:28:08 +00:00
</section>
{{ partial "footer.html" . }}