From df0464cf4e78c525d23e95ded66907ae2ffc9255 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Thu, 26 Oct 2023 16:24:49 +0300 Subject: [PATCH] Add navigation_with_keys: False and sort options --- docs/conf.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 7ef2b342aa..cacfe3d038 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -37,16 +37,17 @@ html_title = "Docker Stacks documentation" html_logo = "_static/jupyter-logo.svg" html_theme_options = { + "logo": { + "text": html_title, + }, + "navigation_with_keys": False, "path_to_docs": "docs", - "repository_url": "https://github.com/jupyter/docker-stacks", "repository_branch": "main", + "repository_url": "https://github.com/jupyter/docker-stacks", + "use_download_button": True, "use_edit_page_button": True, "use_issues_button": True, "use_repository_button": True, - "use_download_button": True, - "logo": { - "text": html_title, - }, } html_last_updated_fmt = "%Y-%m-%d"