1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| {{ define "header" }}{{ partial "page-header.html" . }}{{ end }}
| {{ define "main" }}
| {{ $currentPageUrl := .URL }}
| <div class="flex mt5 mw8 center">
| <article class="pv5">
| <h4 class="f6">
| {{ humanize .Section | upper }}
| </h4>
| <h1>
| {{ .Title }}
| </h1>
| <div class="nested-copy-line-height f4 nested-linkfs nested-img mid-gray measure-wide-l">
| {{ .Content }}
| </div>
| </article>
| <div class="ph4 mt6">
| {{ partial "menu-contextual.html" . }}
| </div>
| </div>
| {{ end }}
|
|