Please submit issues to https://github.com/quansight/qhub/issues
This repo contains html jinja2 templates for customising the appearance of JupyterHub. Each HTML file here will override the files in https://github.com/jupyterhub/jupyterhub/tree/master/share/jupyter/hub/templates.
Install qhub_jupyterhub_theme in your environment
pip install qhub_jupyterhub_themeAdd the following to the jupyterhub configuration to pickup the new jinja2 templates directory and static files.
from qhub_jupyterhub_theme import theme_extra_handlers, theme_template_paths
c.JupyterHub.extra_handlers = theme_extra_handlers
c.JupyterHub.template_paths = theme_template_pathsFinally customize the templates via the template_vars. Current
options are:
hub_titlehub_subtitlewelcomelogoprimary_colorsecondary_color- `accent_color'
text_colorh1_colorh2_colornavbar_text_colornavbar_hover_color
Internal options:
cdsdashboards_enabledcdsdashboards_restrictedqhub_theme_extra_js_urls
Inspiration is in the test jupyterhub configuration
test_jupyterhub_config.py.
c.JupyterHub.template_vars = {
'hub_title': 'This is QHub',
'hub_subtitle': 'your scalable open source data science laboratory.',
'welcome': 'have fun.',
}Install the development environment
conda env install -f environment.yamlYou do not need to restart jupyterhub to see changes in custom and
templates. Run jupyterhub via the test script
jupyterhub --config test_jupyterhub_config.pyTo run in VSCode, here is a launch.json config:
{
"name": "JupyterHub test",
"type": "python",
"request": "launch",
"module": "jupyterhub",
"args": ["-f", "./test_jupyterhub_config.py"],
"cwd": "${workspaceFolder}"
}
You would need to make sure the Python virtualenv you've set up for this is active in the project.
Version 0.3.6
- Extend navbar links #16
Version 0.3.5
- Updates to the version display style #15
Version 0.3.4
- Updades to Readme
- Expose navbar color options #12
- Add option to display Qhub version #13
Version 0.3.3
- Simplify the JupyterHub config (backwards-compatible)
- Added testing docs for VScode
Version 0.3.2
- Added Dashboards menu page and header
- Added custom js tag functionality #11
Version 0.3.1
- Add text color and defaults to template options #9
Version 0.3.0
- Adds colors! 🎉