mirror of https://github.com/theNewDynamic/gohugo-theme-ananke.git

Bud Parr
15.23.2017 9e5401d0fac2215f74ee8a4c5d2533fbb6d84943
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{{ define "header" }}{{ partial "page-header.html" . }}{{ end }}
{{ define "main" }}
  <div class="flex-l mt2 mw8 center">
    <article class="center cf pv5 ph3 ph4-ns mw7">
      <p class="f6 b helvetica tracked">
        {{ humanize .Section | upper  }}
      </p>
      <h1 class="f1 athelas">
        {{ .Title }}
      </h1>
        {{/* 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 nested-links nested-img mid-gray">
        {{ .Content | markdownify }}
      </section>
      {{ partial "tags.html" . }}
    </article>
    <div class="ph3 mt2 mt6-ns">
      {{ partial "menu-contextual.html" . }}
    </div>
  </div>
{{ end }}