From 185afd2201dda95e92d9c67f4867e95a2411329e Mon Sep 17 00:00:00 2001 From: hestonhoffman Date: Fri, 18 Apr 2025 16:54:47 -0700 Subject: [PATCH] (docsdev)WEB-6269 Part 1: Add Further Reading if manifest is present --- layouts/integrations/single.html | 11 +++++++++++ 1 file changed, 11 insertions(+) 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 }}