{{ 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 }}