{{ define "title" }} {{ site.Title }} | {{ .Title }} {{ end }} {{ define "main" }}
{{ partial "docs/dashboard-panel.html" . }}
{{ partial "docs/navbar.html" . }}
{{ $scratch := newScratch }} {{ range $name, $integration := $.Site.Data.integrations.integrations }} {{ $scratch.Add "integration-names" (slice $name) }} {{ end }} {{ range $name := (sort ($scratch.Get "integration-names")) }} {{ $integration := (index $.Site.Data.integrations.integrations $name) }}
{{ partial "docs/integration-logo.html" (dict "name" $name) }}

{{- $integration.title -}}

{{ end }}
{{ end }}