diff --git a/src/rocm_docs/rocm_docs_theme/sections/header.html b/src/rocm_docs/rocm_docs_theme/sections/header.html
index 39442524..a781c82a 100644
--- a/src/rocm_docs/rocm_docs_theme/sections/header.html
+++ b/src/rocm_docs/rocm_docs_theme/sections/header.html
@@ -19,7 +19,7 @@
- {{ top_level_header(theme_repository_branch | replace("docs-", ""), header_latest_version, header_release_candidate_version) }}
+ {{ top_level_header(theme_repository_branch | replace("docs-", ""), theme_header_latest_version, theme_header_release_candidate_version) }}
diff --git a/src/rocm_docs/rocm_docs_theme/theme.conf b/src/rocm_docs/rocm_docs_theme/theme.conf
index 13635ec0..a4e049aa 100644
--- a/src/rocm_docs/rocm_docs_theme/theme.conf
+++ b/src/rocm_docs/rocm_docs_theme/theme.conf
@@ -9,3 +9,6 @@ show_toc_level = 1
flavor = rocm
link_main_doc = True
+
+header_latest_version = 6.0.0
+header_release_candidate_version = 6.1.0
diff --git a/src/rocm_docs/theme.py b/src/rocm_docs/theme.py
index 4bdd05ed..91fa81b1 100644
--- a/src/rocm_docs/theme.py
+++ b/src/rocm_docs/theme.py
@@ -103,8 +103,8 @@ def _update_theme_options(app: Sphinx) -> None:
"notfound_context": {"title": "404 - Page Not Found"},
"notfound_template": "404.html",
"html_context": {
- "header_latest_version": header_latest_version,
- "header_release_candidate_version": header_release_candidate_version,
+ "theme_header_latest_version": header_latest_version,
+ "theme_header_release_candidate_version": header_release_candidate_version,
},
}
for key, default in default_config_opts.items():