Skip to content
Open
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
10 changes: 9 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,14 @@
import iati_sphinx_theme

# Import project-specific settings
from project_info import project, eyebrow_text, github_repository, languages, redoc
from project_info import (
project,
eyebrow_text,
github_repository,
languages,
redoc,
tool_nav_items,
)

MESSAGE_CATALOG_NAME = "iati-sphinx-theme"
_ = get_translation(MESSAGE_CATALOG_NAME)
Expand Down Expand Up @@ -51,6 +58,7 @@
"languages": languages,
"project_title": _(project),
"show_download_links": True,
"tool_nav_items": tool_nav_items,
}

# Add any paths that contain custom static files (such as style sheets, videos,
Expand Down
4 changes: 4 additions & 0 deletions docs/project_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,7 @@
"template": "_templates/redoc-custom.j2",
}
]

# Per-tool navigation link(s) shown in the page header. Empty for repos
# that don't represent a single tool (e.g. the docs base, multi-tool sites).
tool_nav_items = {}
Loading