summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuriy Andamasov <yuriy@vyos.io>2026-05-05 22:38:57 +0300
committerYuriy Andamasov <yuriy@vyos.io>2026-05-05 22:38:57 +0300
commit2506300066a4d6c1ac4fb647d065e4e87bf80ddb (patch)
tree652af8e261c4f7bebbcb20cb0260d35364fad7ae
parentc9e0d00783d0d6219500390dc3cc6f63c00b8542 (diff)
downloadvyos-documentation-2506300066a4d6c1ac4fb647d065e4e87bf80ddb.tar.gz
vyos-documentation-2506300066a4d6c1ac4fb647d065e4e87bf80ddb.zip
docs(conf): set branch-localized html_title on circinus
Circinus is the 1.5 LTS train, but docs/conf.py hard-coded the rolling-release title from the current branch. The page title rendered as "VyOS rolling release (current)" on the 1.5 LTS docs. Use the existing branch-localized release variable so the title resolves to "VyOS 1.5.x (circinus) LTS". Spotted while reviewing PR #1869 feedback; unrelated to that change and pre-existing. 🤖 Generated by [robots](https://vyos.io)
-rw-r--r--docs/conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py
index e87def82..3616869f 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -133,7 +133,7 @@ html_favicon = '_static/images/vyos-logo-icon.png'
# The "title" for HTML documentation generated with Sphinx's own templates.
# This is appended to the `<title>` tag of individual pages, and used
# in the navigation bar as the "topmost" element.
-html_title = f'{project} rolling release (current)'
+html_title = f'{project} {release} LTS'
# -- Options for HTMLHelp output ---------------------------------------------