partial.html 643 B

1234567891011121314
  1. {# Copy so we do not modify the page_config with updates. #}
  2. {% set page_config_full = page_config.copy() %}
  3. {# Set a dummy variable - we just want the side effect of the update. #}
  4. {% set _ = page_config_full.update(baseUrl=base_url, wsUrl=ws_url) %}
  5. <script id="jupyter-config-data" type="application/json">
  6. {{ page_config_full | tojson }}
  7. </script>
  8. {% block favicon %}
  9. <link rel="icon" type="image/x-icon" href="{{ base_url | escape }}static/favicons/favicon.ico" class="idle favicon">
  10. <link rel="" type="image/x-icon" href="{{ base_url | escape }}static/favicons/favicon-busy-1.ico" class="busy favicon">
  11. {% endblock %}