diff --git a/docs/source/conf.py b/docs/source/conf.py index 678cf876d..033e8d2ed 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -184,8 +184,10 @@ # Setting check_switcher to False, since we are building the version switcher for the first time, the json_url will # return 404s, which will then cause the build to fail. html_theme_options = { - 'collapse_navigation': False, - 'navigation_depth': 6, + 'collapse_navigation': + False, + 'navigation_depth': + 6, 'extra_head': [ # Adding Adobe Analytics ''' @@ -196,11 +198,18 @@ ''' ], - "show_nav_level": 2, + "show_nav_level": + 2, "switcher": { "json_url": "../versions1.json", "version_match": version }, - "check_switcher": False + "check_switcher": + False, + "icon_links": [{ + "name": "GitHub", + "url": "https://github.com/NVIDIA/NeMo-Agent-Toolkit", + "icon": "fa-brands fa-github", + }], } html_extra_path = ["versions1.json"]