summaryrefslogtreecommitdiff
path: root/layouts/blog/list.html
blob: 9040deafe6bb5263be0c72f23fffe1c986d26a39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ define "main" }}
  <div id="blog-list">
    <h1>
      {{ if .Params.heading }}
        {{ .Params.heading }}
      {{ else }}
        {{ .Title }}
      {{ end }}
    </h1>

    {{ .Content }}

    {{ if .Sections }}
      {{- partial "blog-section-list.html" . -}}
    {{ else }}
      {{- partial "blog-list.html" . -}}
    {{ end }}
  </div>
{{ end }}