Skip to content

Commit

Permalink
Add icons to documentation (#1316)
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner authored Jul 24, 2023
1 parent 3b590b3 commit 4b8754c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions Documentation/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,36 @@
# HTML writer configuration
html_theme = "pydata_sphinx_theme"

html_theme_options = {
"icon_links": [
{
"name": "GitHub",
"url": "https://github.com/Econ-ARK/HARK",
"icon": "fa-brands fa-square-github",
"type": "fontawesome",
},
{
"name": "Twitter",
"url": "https://twitter.com/econ_ark",
"icon": "fa-brands fa-square-twitter",
"type": "fontawesome",
},
{
"name": "PyPI",
"url": "https://pypi.org/project/econ-ark/",
"icon": "fa-solid fa-box",
"type": "fontawesome",
},
{
"name": "Econ-ARK",
"url": "https://econ-ark.org",
"icon": "_static/econ-ark-logo.png",
"type": "local",
"attributes": {"target": "_blank"},
},
]
}

# Use Econ-ARK URL to host the website
html_baseurl = "https://docs.econ-ark.org"

Expand Down

0 comments on commit 4b8754c

Please sign in to comment.