diff --git a/README.md b/README.md index 543b3a84..6cc338e6 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](https://www.repostatus.org/badges/latest/wip.svg)](https://www.repostatus.org/#wip) [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/ZGIS/semantique/HEAD?labpath=demo%2Ftest.ipynb) - + `semantique` is a Python package that implements a structured framework for semantic querying in Earth observation data cubes, meaning that users can query the cube through an ontology. ## Content diff --git a/docs/source/_images/logo.png b/docs/source/_static/logo.png similarity index 100% rename from docs/source/_images/logo.png rename to docs/source/_static/logo.png diff --git a/docs/source/_images/logo_dark.png b/docs/source/_static/logo_dark.png similarity index 100% rename from docs/source/_images/logo_dark.png rename to docs/source/_static/logo_dark.png diff --git a/docs/source/conf.py b/docs/source/conf.py index d2f904ce..7b96a804 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -68,6 +68,9 @@ # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] +html_logo = "_static/logo.png" +html_favicon = "_static/logo.png" + html_theme_options = { "repository_url": "https://github.com/ZGIS/semantique", "repository_branch": "main", @@ -79,12 +82,10 @@ "binderhub_url": "https://mybinder.org/v2/gh/ZGIS/semantique/HEAD?labpath=demo" }, "logo": { - "image_dark": "_images/logo_dark.png" + "image_dark": "_static/logo_dark.png" } } -html_logo = "_images/logo.png" - # -- Napoleon configuration --------------------------------------------------- napoleon_use_param = True