diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 7805db93e0..4c94986643 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -12,7 +12,7 @@
{{ partial "guides-stepper.html" . }}
{{ end }}
- {{ partial "pagemeta.html" . }}
+ {{ partialCached "pagemeta.html" . . }}
{{ .Content }}
diff --git a/layouts/partials/aside.html b/layouts/partials/aside.html
index c08cc49436..839f549679 100644
--- a/layouts/partials/aside.html
+++ b/layouts/partials/aside.html
@@ -1,6 +1,6 @@
diff --git a/layouts/shortcodes/introduced.html b/layouts/shortcodes/introduced.html
index 20eeaa3709..3ae8298be4 100644
--- a/layouts/shortcodes/introduced.html
+++ b/layouts/shortcodes/introduced.html
@@ -42,7 +42,7 @@ Depends on site.Params.min_version_thresholds and i18n strings for component IDs
{{ end }}
{{- if $versionAboveThreshold }}
- {{ partial "icon.html" "chevron_right" }}
+ {{ partialCached "icon.html" "chevron_right" "chevron_right" }}
Introduced in {{ T $component }} version
{{- if $link }}
{{ page.RenderString (fmt.Printf `[%s](%s)` $v $link) }}