ananke/layouts/_default/single.html

19 lines
493 B
HTML
Raw Normal View History

2017-04-11 03:27:13 +02:00
{{ define "header" }}{{ partial "page-header.html" . }}{{ end }}
{{ define "main" }}
2017-04-14 05:01:23 +02:00
{{ $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">
2017-04-12 04:22:06 +02:00
{{ .Content }}
2017-04-14 05:01:23 +02:00
</div>
</article>
{{ partial "menu-contextual.html" . }}
</div>
2017-04-11 03:27:13 +02:00
{{ end }}