diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 300f8881f3..cb12ababe2 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -73,7 +73,7 @@

Redirecting…

{{ partial "site-root.html" . }} - {{ partial "footer.html" . }} + {{ partialCached "footer.html" . }}
{{ else if (isset .Params "book") }} @@ -101,7 +101,7 @@

{{ .Params.book.section.cs_number }} {{ .Params.book.chapter.title }} - {{ . {{ end }} - {{ partial "footer.html" . }} + {{ partialCached "footer.html" . }} {{ else if (isset .Params "docname") }}
@@ -128,7 +128,7 @@
- {{ partial "footer.html" . }} + {{ partialCached "footer.html" . }} {{ else }}
@@ -165,7 +165,7 @@

About{{ if (isset .Params "subtitle") }} - {{ .Pa {{ end }}

- {{ partial "footer.html" . }} + {{ partialCached "footer.html" . .Params "section" }} {{ end }} diff --git a/layouts/partials/site-root.html b/layouts/partials/site-root.html index 70f5ded911..85658d63ed 100644 --- a/layouts/partials/site-root.html +++ b/layouts/partials/site-root.html @@ -43,7 +43,7 @@

Community

- {{ partial "monitor.html" . }} + {{ partialCached "monitor.html" . }} diff --git a/layouts/shortcodes/monitor.html b/layouts/shortcodes/monitor.html index 0b742cfcaa..a2956ec9c4 100644 --- a/layouts/shortcodes/monitor.html +++ b/layouts/shortcodes/monitor.html @@ -1 +1 @@ -{{ partial "monitor.html" . }} +{{ partialCached "monitor.html" . }}
Graphical UIs