Skip to content

Commit

Permalink
doc: add github icon in navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
Etienne de Montalivet committed Jan 3, 2024
1 parent 34493d6 commit c573040
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html

import os

# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
import sys
import os

sys.path.insert(0, os.path.abspath("../.."))

from micromed_io import __version__


project = "Micromed IO"
copyright = "2023, Love only"
author = "Etienne de Montalivet"
Expand Down Expand Up @@ -69,6 +69,17 @@
#
html_theme = "pydata_sphinx_theme"

html_theme_options = {
"icon_links": [
{
"name": "GitHub",
"url": "https://github.com/etiennedemontalivet/micromed-io",
"icon": "fa-brands fa-github",
"type": "fontawesome",
},
],
}

# 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".
Expand Down

0 comments on commit c573040

Please sign in to comment.