diff --git a/layouts/integrations/single.html b/layouts/integrations/single.html index 307930084336f..f5d53a2269905 100644 --- a/layouts/integrations/single.html +++ b/layouts/integrations/single.html @@ -1,5 +1,9 @@ {{ define "main" }} {{ $media := .Params.tile.media | default .Params.media | default "" }} + {{ $further_reading := .Params.further_reading }} + + {{- /* Only marketplace integrations are supported currently */ -}} + {{ $is_marketplace := in .Params.categories "marketplace" }}
@@ -18,4 +22,11 @@

{{ .Params.integration_title | default .Title }}

{{ end }} {{ .Content }} + + {{- if and ($is_marketplace) ($further_reading) -}} + +

Further Reading

+ {{- partial "whats-next/whats-next.html" . -}} + {{- end -}} + {{ end }}