ananke/layouts/_default/single.html
2017-04-13 23:01:23 -04:00

19 lines
493 B
HTML
Executable file

{{ define "header" }}{{ partial "page-header.html" . }}{{ end }}
{{ define "main" }}
{{ $currentPageUrl := .URL }}
<div class="flex">
<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>
{{ partial "menu-contextual.html" . }}
</div>
{{ end }}