Skip to content
Merged
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
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import iati_sphinx_theme

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

MESSAGE_CATALOG_NAME = "iati-sphinx-theme"
_ = get_translation(MESSAGE_CATALOG_NAME)
Expand Down Expand Up @@ -47,7 +47,7 @@
html_theme_options = { # See https://iati-sphinx-theme.readthedocs-hosted.com/en/latest/#configuration for additional options and info
"github_repository": github_repository,
"header_title_text": _(project),
"header_eyebrow_text": _("IATI Documentation"),
"header_eyebrow_text": _(eyebrow_text),
"languages": languages,
"project_title": _(project),
"show_download_links": True,
Expand Down
3 changes: 3 additions & 0 deletions docs/project_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
# Project name (used for titles, headers, and Sphinx internals)
project = "IATI Docs Base"

# Eyebrow text: the smaller text that appears directly above the website title
eyebrow_text = "IATI Tools: Documentation"

# GitHub repository URL (for "Edit on GitHub" links)
github_repository = "https://github.com/IATI/iati-docs-base"

Expand Down
Loading