Skip to content

Commit

Permalink
update libcasm-xtal favicons
Browse files Browse the repository at this point in the history
  • Loading branch information
bpuchala committed Mar 14, 2024
1 parent 8bc5f73 commit 4112a12
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
1 change: 0 additions & 1 deletion doc_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
numpydoc
sphinx
sphinx-argparse
sphinx-favicon
sphinx_rtd_theme
sphinxcontrib-bibtex
pydata-sphinx-theme
Binary file added python/doc/_static/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 python/doc/_static/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 python/doc/_static/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.
16 changes: 13 additions & 3 deletions python/doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@
"sphinx.ext.viewcode",
"sphinx.ext.githubpages",
"sphinx.ext.napoleon",
"sphinx_favicon",
"sphinxarg.ext",
"sphinxcontrib.bibtex",
"sphinx.ext.intersphinx",
Expand Down Expand Up @@ -163,14 +162,25 @@
"type": "fontawesome",
},
],
"favicons": [
{
"rel": "icon",
"sizes": "32x32",
"href": "favicon-32x32.png",
},
{
"rel": "icon",
"sizes": "16x16",
"href": "favicon-16x16.png",
},
{"rel": "apple-touch-icon", "sizes": "180x180", "href": "apple-touch-icon.png"},
],
# "primary_sidebar_end": ["primary_sidebar_end"]
}
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ["_static"]
html_favicon = "_static/small_logo.svg"
favicons = ["small_logo.svg"]
html_css_files = [
"css/custom.css",
]
Expand Down

0 comments on commit 4112a12

Please sign in to comment.