blob: 1179500022d3055b242b6161da37a161bdd0b58a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{{ define "hero" }}
{{ partial "hero.html" . }}
{{ end }}
{{ define "main" }}
{{- $sectionDelimiter := "<!-- section break -->" -}}
{{- $rawContentSections := split .RawContent $sectionDelimiter -}}
{{ range $rawContentSections }}
<div class="stripe-dark">
<div class="mw7 center pv2 lh-copy f4-ns ph1">
{{ . | markdownify }}
</div>
</div>
{{ end }}
<div class="stripe-dark">
<div class="mw7 center pv2 lh-copy f4-ns ph1">
{{ range .Pages.GroupBy "Section" "asc" }}
<h2>{{ .Key }} {{ . }}</h2>
{{ range .Pages }}
{{ partial "post.html" . }}
{{ end }}
{{ end }}
</div>
</div>
{{ end }}
|