blob: 59fb599ecfb0ac572ea9dd91285f9b297317fef4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{{ define "main" }}
<div id="blog-list">
<h1>
{{ if .Params.heading }}
{{ .Params.heading }}
{{ else }}
{{ .Title }}
{{ end }}
</h1>
{{ if .Params.headerImg }}
<img id="header-img" src="{{ .Params.headerImg }}" alt="{{ if .Params.headerAlt }}{{ .Params.headerAlt }}{{ else }}Header Image{{ end }}">
{{ end }}
{{ .Content }}
{{ if .Sections }}
{{- partial "blog-section-list.html" . -}}
{{ else }}
{{- partial "blog-list.html" . -}}
{{ end }}
</div>
{{ end }}
|