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

Bud Parr
11.48.2017 77514eab9ed407b0ccb71c640cb090122da12f03
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{{ define "header" }}{{ partial "page-header.html" . }}{{ end }}
{{ define "main" }}
{{ $currentPageUrl := .URL }}
{{ $currentSection := where .Site.Pages "Section" .Section }}
 
<div class="flex flex-wrap">
  <aside class="w-20 pa4 bg-light-silver">
    <ul>
      {{ range  $currentSection }}
      <li>
        <a href="{{ .URL }}" class="link">
            {{ .Title }}
        </a>
      </li>
      {{ end }}
    </ul>
  </aside>
 
  <article class="center cf pv5 measure-wide-l">
 
    <h4 class="f6">
      {{ humanize .Section | upper  }}
    </h4>
    <h1>
      {{ .Title }} 
    </h1>
    <div class="nested-copy-line-height nested-links nested-img mid-gray measure-wide-l">
        {{ .Content | markdownify }}
    </div>
  </article>
</div>
{{ end }}