{{ define "hero" }}
  {{ partial "hero.html" . }}
{{ end }}
{{ define "main" }}
  {{- $sectionDelimiter := "<!-- section break -->" -}}
  {{- $rawContentSections := split .RawContent $sectionDelimiter -}}
  {{ range $rawContentSections }}
    <div class="stripe-dark">
      <div class="mw7 center pv2 lh-copy f4-ns ph1">
        {{ . | markdownify }}
      </div>
    </div>
  {{ end }}


  <div class="stripe-dark">
    <div class="mw7 center pv2 lh-copy f4-ns ph1">
      {{ range .Pages.GroupBy "Section" "asc" }}
        <h2>{{ .Key }} {{ . }}</h2>
        {{ range .Pages }}
          {{ partial "post.html" . }}
        {{ end }}
      {{ end }}
    </div>
  </div>
{{ end }}