audeering / audbcards

Data cards for audio datasets
https://audeering.github.io/audbcards/
Other
0 stars 0 forks source link

Fix link to repo in documentation and remove footer links #52

Closed hagenw closed 7 months ago

hagenw commented 7 months ago

At the moment we have:

image

but it should point to Github instead.

And it should also not show our footer links:

image

To achieve this, we can just copy the settings feom audb's docs/conf.py file:

html_theme_options = { 
    "display_version": True,
    "logo_only": False,
    "footer_links": False,
}
html_context = { 
    "display_github": True,
}