ananke/layouts/article/single.html

25 lines
780 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 18:37:12 +02:00
<div class="flex mt5 mw8 center">
2017-04-12 00:59:14 +02:00
<article class="center cf pv5 mw7">
2017-04-11 16:44:43 +02:00
<p class="f6 fw8">
2017-04-11 03:27:13 +02:00
{{ humanize .Section | upper }}
2017-04-11 16:44:43 +02:00
</p>
2017-04-14 18:37:12 +02:00
<h1 class="f1 athelas">
2017-04-11 03:27:13 +02:00
{{ .Title }}
</h1>
2017-04-12 00:59:14 +02:00
{{/* TODO: Add Hugo author */}}
<time class="f6 mv4 dib tracked" datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
{{ .Date.Format "January 2, 2006" }}
</time>
<section class="nested-copy-line-height lh-copy serif f4 measure-wide-l nested-links nested-img mid-gray">
2017-04-11 03:27:13 +02:00
{{ .Content | markdownify }}
2017-04-12 00:59:14 +02:00
</section>
{{ partial "tags.html" . }}
2017-04-11 03:27:13 +02:00
</article>
2017-04-14 18:37:12 +02:00
<div class="ph4 mt6">
{{ partial "menu-contextual.html" . }}
</div>
</div>
2017-04-11 03:27:13 +02:00
{{ end }}