diff --git a/layouts/develop/single.html b/layouts/develop/single.html index a2e7bc5767..77511c978f 100644 --- a/layouts/develop/single.html +++ b/layouts/develop/single.html @@ -36,7 +36,9 @@

{{ partial "feedback.html" . }} - {{ partial "docs-toc.html" . }} + {{ if not .Params.hideTOC }} + {{ partial "docs-toc.html" . }} + {{ end }} {{ partial "scripts.html" . }} {{ end }} diff --git a/layouts/integration/list.html b/layouts/integration/list.html index 411eb1ef79..e4fd870810 100644 --- a/layouts/integration/list.html +++ b/layouts/integration/list.html @@ -5,7 +5,7 @@ {{ define "main" }}
{{ partial "docs-nav.html" . }} -
+
{{ partial "breadcrumbs" . }}

{{ .Title }}

diff --git a/layouts/integration/single.html b/layouts/integration/single.html index 41c035db84..5ff22140b9 100644 --- a/layouts/integration/single.html +++ b/layouts/integration/single.html @@ -5,7 +5,7 @@ {{ define "main" }}
{{ partial "docs-nav.html" . }} -
+
{{ partial "breadcrumbs" . }}

{{ .Title }}

diff --git a/layouts/operate/list.html b/layouts/operate/list.html index 264297d014..8951550430 100644 --- a/layouts/operate/list.html +++ b/layouts/operate/list.html @@ -5,7 +5,7 @@ {{ define "main" }}
{{ partial "docs-nav.html" . }} -
+
{{ partial "breadcrumbs" . }}

@@ -92,7 +92,9 @@

{{ partial "feedback.html" . }}

- {{ partial "docs-toc.html" . }} + {{ if not .Params.hideTOC }} + {{ partial "docs-toc.html" . }} + {{ end }} {{ partial "scripts.html" . }}
{{ end }} diff --git a/layouts/operate/single.html b/layouts/operate/single.html index fbb167d2ca..415c075372 100644 --- a/layouts/operate/single.html +++ b/layouts/operate/single.html @@ -5,7 +5,7 @@ {{ define "main" }}
{{ partial "docs-nav.html" . }} -
+
{{ partial "breadcrumbs" . }}

{{ .Title }}

@@ -82,7 +82,9 @@

{{ .Title }}

{{ partial "feedback.html" . }}
- {{ partial "docs-toc.html" . }} + {{ if not .Params.hideTOC }} + {{ partial "docs-toc.html" . }} + {{ end }} {{ partial "scripts.html" . }}
{{ end }}