{{ define "title" }} {{ site.Title }} | {{ .Title }} {{ end }} {{ define "content" }}
{{ partial "nav.html" . }}

{{ .Title }}

{{ $integrations := where $.Site.RegularPages "Section" "integrations" }} {{ range $category := .Params.categories }}

{{ $category.title }}

{{ $category.description }}

    {{ range $page := where $.Pages "Section" "ecosystem" }} {{ if eq $page.Params.category $category.key }} {{ $feature := path.BaseName $page.RelPermalink }} {{ $selectedIntegrations := partial "functions/select-integrations-by-docs-feature" (dict "integrations" $integrations "feature" $feature) }} {{ if (gt (len $selectedIntegrations) 1) }}
  • {{ .Title }} ({{ len $selectedIntegrations }} projects) {{ if .Params.description }} - {{ .Params.description }} {{ end }}
  • {{ end }} {{ end }} {{ end }}
{{ end }}

All Integrations

{{ $selectedIntegrations := partial "functions/sort-integrations" (dict "integrations" $integrations) }} {{ partial "ecosystem-project-list" (dict "selectedIntegrations" $selectedIntegrations "integrations" $integrations) }}

Integrations are ordered by the amount of linked content.

{{ end }}