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