This is an automated email from the ASF dual-hosted git repository. kaxilnaik pushed a commit to branch v2-11-test in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v2-11-test by this push: new 49b35333330 Docs: Add Airflow Version in Page Title (#50358) 49b35333330 is described below commit 49b35333330a81a0cdf5aaec7bdd4fd2ba4cf7a6 Author: Kaxil Naik <kaxiln...@apache.org> AuthorDate: Thu May 8 22:43:56 2025 +0530 Docs: Add Airflow Version in Page Title (#50358) Taking inspiration from https://spark.apache.org/docs/3.5.4/, adding the Airflow version in the Page title. This should help in SEO and hence search engine. And hopefully users notice it a little more. (cherry picked from commit e36ad45096bed59e605cbef22e66496138e2f9e5) --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 11560b0923f..f52dd3a7361 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -304,7 +304,7 @@ html_theme = "sphinx_airflow_theme" # The name for this set of Sphinx documents. If None, it defaults to # "<project> v<release> documentation". if PACKAGE_NAME == "apache-airflow": - html_title = "Airflow Documentation" + html_title = f"Airflow {PACKAGE_VERSION} Documentation" else: html_title = f"{PACKAGE_NAME} Documentation" # A shorter title for the navigation bar. Default is the same as html_title.