Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/_static/favicon_io/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/_static/favicon_io/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/_static/favicon_io/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/_static/favicon_io/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions docs/_static/favicon_io/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
12 changes: 11 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# -- Project information -----------------------------------------------------

project = 'IRIS'
copyright = '2024, Roy T. Smart'
copyright = '2025, Roy T. Smart'
author = 'Roy T. Smart'

# -- General configuration ---------------------------------------------------
Expand All @@ -37,6 +37,7 @@
'sphinx.ext.viewcode',
'sphinxcontrib.bibtex',
'jupyter_sphinx',
'sphinx_favicon',
]
autosummary_generate = True # Turn on sphinx.ext.autosummary
autosummary_imported_members = True
Expand Down Expand Up @@ -92,6 +93,15 @@
},
}

favicons = [
dict(href="favicon_io/favicon-16x16.png"),
dict(href="favicon_io/favicon-32x32.png"),
dict(
rel="apple-touch-icon",
href="favicon_io/apple-touch-icon.png"
)
]

# https://github.com/readthedocs/readthedocs.org/issues/2569
master_doc = 'index'

Expand Down