ananke/layouts/_default/single.html
2017-04-14 12:37:12 -04:00

21 lines
547 B
HTML
Executable file

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