{# this template customizes all pages (classic notebook, not jupyterlab) served by the single-user server It makes the following modifications: - add jupyterhub control panel link to the header - update logo url to jupyterhub - remove `?redirects` url param that may be added by jupyterhub #} {% extends "templates/page.html" %} {% block header_buttons %} {{ super() }} Control Panel {% endblock header_buttons %} {% block logo %} Jupyter Notebook {% endblock logo %} {% block script %} {{ super() }} {% endblock script %}