diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1c1408f..263c355 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -18,12 +18,14 @@ This website is built from the `HEAD` of the `main` branch of the theme reposito
Code changes to `main` that are *not* in the latest release:
- Fixed: `back_to_top` not displaying when no other footer variables are set by [@mattxwang] in [#1461]
+- Fixed: auto-generated child navigation (TOC) by [@pdmosses] in [#1590]
Docs changes made since the latest release:
- N/A
[#1461]: https://github.com/just-the-docs/just-the-docs/pull/1461
+[#1590]: https://github.com/just-the-docs/just-the-docs/pull/1590
## Release v0.10.0
diff --git a/_includes/components/breadcrumbs.html b/_includes/components/breadcrumbs.html
index c945277..6bdcdad 100644
--- a/_includes/components/breadcrumbs.html
+++ b/_includes/components/breadcrumbs.html
@@ -11,14 +11,14 @@
{%- if page.url != "/" and page.parent and page.title -%}
-{%- capture nav_list_link -%}
-
-{%- endcapture -%}
-
{%- capture site_nav -%}
{%- include_cached components/site_nav.html all=true -%}
{%- endcapture -%}
+{%- capture nav_list_link -%}
+
+{%- endcapture -%}
+
{%- capture nav_list_simple -%}
{%- endcapture -%}
diff --git a/_includes/components/children_nav.html b/_includes/components/children_nav.html
index d233ebd..e0ba097 100644
--- a/_includes/components/children_nav.html
+++ b/_includes/components/children_nav.html
@@ -11,23 +11,24 @@
{%- comment -%}
Whether a page has any children is checked efficiently by inspecting the cached
site_nav. If the page has no children, nav_children is set to an empty array;
- otherwise nav_children is left unset.
+ otherwise nav_children is left unset. (The site_nav is rendered the first time
+ it is included, and that may overwrite various variables.)
{%- endcomment -%}
{%- if page.has_children == false -%}
{%- assign nav_children = "" | split: "" -%}
{%- else -%}
+ {%- capture site_nav -%}
+ {%- include_cached components/site_nav.html all=true -%}
+ {%- endcapture -%}
+
{%- assign nav_children = nil -%}
{%- capture nav_list_link -%}
{%- endcapture -%}
- {%- capture site_nav -%}
- {%- include_cached components/site_nav.html all=true -%}
- {%- endcapture -%}
-
{%- capture nav_list_simple -%}