From c64906836f56ae254dc9fa8c4e10ebca6d771037 Mon Sep 17 00:00:00 2001 From: Chris Holdgraf Date: Sat, 20 Sep 2025 08:46:06 -0700 Subject: [PATCH 1/2] Add JupyterCon banner and add Jupyter colors --- docs/source/conf.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/source/conf.py b/docs/source/conf.py index 1da6131c4e..ac6ae7ca29 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -172,6 +172,7 @@ # further. For a list of options available for each theme, see the # documentation. html_theme_options = { + "announcement": "馃殌 Join us in San Diego 路 JupyterCon 2025 路 Nov 4-5 路 SCHEDULEREGISTER NOW", "header_links_before_dropdown": 5, "icon_links": [ { @@ -400,3 +401,6 @@ spelling_lang = "en_US" spelling_word_list_filename = "spelling_wordlist.txt" + +def setup(app): + app.add_css_file("https://docs.jupyter.org/en/latest/_static/jupyter.css") From 1af74f2f5fef5122af417a4af3b1fafa9bee18b4 Mon Sep 17 00:00:00 2001 From: choldgraf Date: Wed, 24 Sep 2025 13:13:14 -0700 Subject: [PATCH 2/2] Fix formatting --- docs/source/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index ac6ae7ca29..cb97c01d2a 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -172,7 +172,7 @@ # further. For a list of options available for each theme, see the # documentation. html_theme_options = { - "announcement": "馃殌 Join us in San Diego 路 JupyterCon 2025 路 Nov 4-5 路 SCHEDULEREGISTER NOW", + "announcement": '馃殌 Join us in San Diego 路 JupyterCon 2025 路 Nov 4-5 路 SCHEDULEREGISTER NOW', "header_links_before_dropdown": 5, "icon_links": [ { @@ -402,5 +402,6 @@ spelling_lang = "en_US" spelling_word_list_filename = "spelling_wordlist.txt" + def setup(app): app.add_css_file("https://docs.jupyter.org/en/latest/_static/jupyter.css")