diff options
| author | 2025-11-20 15:33:59 +0800 | |
|---|---|---|
| committer | 2025-11-20 15:33:59 +0800 | |
| commit | 2e529440ffe15dfdf3a495b5b1027b853610d068 (patch) | |
| tree | 0ad9ca93f36355029c336f12f785e73add42ec19 | |
| parent | 5c6c83e276a5e1b9476e8d2ae6433e727659b301 (diff) | |
| download | GRPS-2e529440ffe15dfdf3a495b5b1027b853610d068.tar.gz GRPS-2e529440ffe15dfdf3a495b5b1027b853610d068.zip | |
fix: Correct variable name for HTML logo and favicon in configuration
| -rw-r--r-- | docs/source/conf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/source/conf.py b/docs/source/conf.py index 0feaab8..59b2bea 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -71,10 +71,10 @@ gettext_uuid = True # optional. html_theme = "furo" html_static_path = ["../_static"] -_html_logo = ( +html_logo = ( "https://files.hydroroll.team/hotlink-ok/files/image/logo.png" ) -html_favicon = _html_logo +html_favicon = html_logo html_css_files = [ "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/fontawesome.min.css", |
