Commit b192010f authored by Anas Nashif's avatar Anas Nashif Committed by Anas Nashif
Browse files

doc: do not put version in breadcrumbs for daily docs

parent 225c1f26
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -145,6 +145,11 @@ if tags.has('daily') or tags.has('release'):
    html_theme_path = ['./themes']


if tags.has('release'):
    docs_title = 'Docs / %s' %(version)
else:
    docs_title = 'Docs'

# The name for this set of Sphinx documents.  If None, it defaults to
# "<project> v<release> documentation".
html_title = "Zephyr Project Documentation"
@@ -326,7 +331,7 @@ breathe_default_project = "Zephyr"
# docs_title is used in the breadcrumb title in the zephyr docs theme
html_context = {
    'show_license': html_show_license,
    'docs_title': 'Docs / ' + version,
    'docs_title': docs_title,
}

extlinks = {'jira': ('https://jira.zephyrproject.org/browse/%s', '')}