+ {{ end }}
+{{ end }}
\ No newline at end of file
diff --git a/layouts/partials/docs/top-header.html b/layouts/partials/docs/top-header.html
index a19fbca0..3d0343b3 100644
--- a/layouts/partials/docs/top-header.html
+++ b/layouts/partials/docs/top-header.html
@@ -46,6 +46,31 @@
diff --git a/layouts/partials/docs/version-banner.html b/layouts/partials/docs/version-banner.html
new file mode 100644
index 00000000..132ba896
--- /dev/null
+++ b/layouts/partials/docs/version-banner.html
@@ -0,0 +1,37 @@
+{{ $latestVersionUrl := urls.Parse $.Site.Params.Baseurl }}
+{{ $currentVersion := "" }}
+
+{{ range .Site.Params.versions }}
+ {{ if .current -}}
+ {{ $currentVersion = .version }}
+ {{ break }}
+ {{ end -}}
+{{ end }}
+
+{{ if .Site.Params.versionInfo.archived }}
+
+
+
+
+
+ report
+
+
+
+
Version {{ $currentVersion | markdownify }} documentation is no longer actively maintained. The version you are currently viewing is an archived snapshot. For up-to-date information, see the latest version.
+
+
+{{ else if .Site.Params.versionInfo.unreleased }}
+
+
+
+
+
+ warning
+
+
+
+
Version {{ $currentVersion | markdownify }} documentation is unreleased and frequently changed. For up-to-date information, see the latest version.
+
+
+{{ end }}
\ No newline at end of file
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index e3fbcf3e..9825cd4e 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -26,6 +26,9 @@
{{- $style = $style | minify | fingerprint "sha384" }}
{{- end -}}
+ {{ range .Site.Params.customCss -}}
+
+ {{- end }}
{{ $js := resources.Get "js/bootstrap.js" }}
{{ $params := dict }}
@@ -35,7 +38,13 @@
{{ if hugo.IsProduction }}
{{ $js = $js | fingerprint "sha384" }}
{{ end }}
-
+
+
+
+ {{ range .Site.Params.customJs -}}
+
+ {{- end }}
+
{{ if ($.Scratch.Get "image_compare_enabled") }}
{{ $imagecompare := resources.Get "js/image-compare-viewer.min.js" }}