devroom.io/layouts/index.html

25 lines
875 B
HTML

{{ partial "header.html" . }}
<section class="posts">
{{ range first 10 (where .Data.Pages "Section" "posts") }}
<article id="{{ .Slug }}" class="teaser-post">
<p class="meta">
<time class="date" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2 January, 2006" }}</time>
</p>
<h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
<p class="description">{{ .Description | safeHTML }}</p>
</article>
{{ end }}
{{ range after 10 (where .Data.Pages "Section" "posts") }}
<article id="{{ .Slug }}" class="teaser-post">
<p class="meta">
<time class="date" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2 January, 2006" }}</time>
</p>
<h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
</article>
{{ end }}
</section>
{{ partial "footer.html" . }}