12345678910111213141516171819202122232425262728293031323334353637 |
- <!--
- Copyright (c) Jupyter Development Team.
- Distributed under the terms of the Modified BSD License.
- -->
- <!DOCTYPE HTML>
- <html>
- <head>
- <meta charset="utf-8">
- <title>{{page_title}}</title>
- {% if mathjax_url %}
- <script type="text/javascript" src="{{mathjax_url}}?config={{mathjax_config}}&delayStartupUntil=configured" charset="utf-8"></script>
- {% endif %}
- <link href="{{static_prefix}}/jupyterlab.css" rel="stylesheet">
-
- </head>
- <body>
- <script id='jupyter-config-data' type="application/json">{
- "baseUrl": "{{base_url | urlencode}}",
- "wsUrl": "{{ws_url| urlencode}}",
- "notebookPath": "{{notebook_path | urlencode}}"
- }</script>
- <script src="{{static_prefix}}/loader.bundle.js" type="text/javascript" charset="utf-8"></script>
- <script>
- jupyter.ensure('lab/jupyterlab.bundle.js', function(requireFunc) {
- requireFunc("jupyterlab-extension@0.1.0/index.js");
- });
- </script>
- </body>
- </html>
|