Skip to content
Snippets Groups Projects
list.html 640 B
{{ define "main" }}
  {{ partial "locations/hero-list.html" . }}

  <div class="document-content">
    {{ partial "locations/summary.html" (dict
        "with_container" true
        "context" .
      ) }}

    {{ partial "contents/list.html" . }}

    <div class="container">
      {{ partial "locations/locations.html" . }}
      {{ partial "commons/pagination.html" . }}
    </div>
    {{ if site.Params.locations.index.map }}
      {{ $locations := .Pages }}
      {{ partial "locations/map.html" (dict
          "locations" $locations
          "title" (i18n "programs.location" $locations)
      )}}
    {{ end }}
  </div>

{{ end }}