aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/_default/about.html
blob: 9c4ca2f815d19d551c71bc47ed1ebb051eb360a1 (plain)
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 "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 ph1">
        <h2 class="athelas lh-title f2">
          {{ .Title }}
        </h2>
        {{ with .Content }}
          <div class="main-content">{{ . }}</div>
        {{ end }}

        {{ range where site.RegularPages "Type" "eq" .Params.subsection }}
          {{ partial "post.html" . }}
        {{ end }}
      </div>
    </div>
  {{ end }}
{{ end }}