ananke/layouts/_default/single.html

20 lines
577 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-15 03:58:31 +02:00
<div class="flex-l mt2 mw8 center">
<article class="center cf pv5 ph3 ph4-ns mw7">
<p class="f6 b helvetica tracked">
2017-04-14 05:01:23 +02:00
{{ humanize .Section | upper }}
2017-04-15 03:58:31 +02:00
</p>
<h1 class="f1">
2017-04-14 05:01:23 +02:00
{{ .Title }}
</h1>
2017-04-15 03:58:31 +02:00
<section class="nested-copy-line-height lh-copy f4 nested-links nested-img mid-gray">
2017-04-15 05:08:11 +02:00
{{ .Content }}
2017-04-15 03:58:31 +02:00
</section>
2017-04-14 05:01:23 +02:00
</article>
2017-04-15 03:58:31 +02:00
<div class="ph3 mt2 mt6-ns">
2017-04-14 18:37:12 +02:00
{{ partial "menu-contextual.html" . }}
</div>
2017-04-14 05:01:23 +02:00
</div>
2017-04-11 03:27:13 +02:00
{{ end }}