From a5d140ad7737ce7588cfd886df19735f7ad324ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Fr=C3=B6se?= Date: Fri, 8 Sep 2023 12:30:34 +0200 Subject: [PATCH] fix path to logo --- docs/conf.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 9fe4be21003..de105472b71 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -150,15 +150,15 @@ def setup(app): "../examples/tutorials", ], # path to your example scripts "gallery_dirs": [ - "examples", - "tutorials", + "user-guide/examples", + "user-guide/tutorials", ], # path to where to save gallery generated output "nested_sections": True, "copyfile_regex": r"index.rst|.*\.png|.*\.json", "filename_pattern": r".*\.py", "promote_jupyter_magic": True, "line_numbers": True, - "default_thumb_file": "ctapipe_logo.png", + "default_thumb_file": "_static/ctapipe_logo.png", "pypandoc": True, "matplotlib_animations": True, } @@ -216,10 +216,10 @@ def setup(app): ".DS_Store", "**.ipynb_checkpoints", "changes", - "examples/*/*.ipynb", - "examples/*/*.py", - "tutorials/*.ipynb", - "tutorials/*.py", + "user-guide/examples/*/*.ipynb", + "user-guide/examples/*/*.py", + "user-guide/tutorials/*.ipynb", + "user-guide/tutorials/*.py", ] # The name of the Pygments (syntax highlighting) style to use.