blob: b709bd7c338fb4bbd3cef4d3ffc0048b89c70cdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{{ define "main" }}
{{- range where .Site.RegularPages "Params.category" "!=" "pages"}}
<article class="list">
<a href="{{ .Page.Permalink }}">
<h2>{{ .Page.Title }}</h2>
</a>
({{ .PublishDate.Format "January 2nd, 2006" }})
<div>
{{ .Page.Summary }}
</div>
{{- if .Page.Truncated }}
<a href="{{ .Page.Permalink }}">More</a>
</div>
{{ end }}
</article>
{{ end }}
{{ end }}
|