aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/_default/about.html
blob: 3fa1090ce7172d296ce6cae8cefb67c9468d7f83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "hero" }}
  {{ partial "hero.html" . }}
{{ end }}

{{ define "main" }}

  <div class="stripe-dark"></div>
  {{ range .Paginator.Pages }}
    <div class="stripe-dark">
      <div class="mw7 center pv2 lh-copy f4-ns main-content ph1">
        <h2 class="athelas lh-title f2">
          {{ .Title }}
        </h2>
        {{ .Content }}
      </div>
    </div>
  {{ end }}
{{ end }}