blob: 1b94afc7639573fd65064a4488d062cf83e2c296 (
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
27
|
{{ 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 }}
{{ with where .Pages "Type" "publication" }}
{{ if gt (len .) 0 }}
<div class="stripe-dark">
<div class="mw7 center pv2 lh-copy f4-ns ph1">
<h2 class="baskerville lh-title f2">Publications</h2>
{{ range . }}
{{ partial "post.html" . }}
{{ end }}
</div>
</div>
{{ end }}
{{ end }}
{{ end }}
|