1234567891011121314151617181920 |
- {{ 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 }}
|