1234567891011121314151617 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>JupyterLab Custom App</title>
- </head>
- <body>
- <script id='jupyter-config-data' type="application/json">{
- {% for key, value in page_config.items() -%}
- "{{ key }}": "{{ value }}",
- {% endfor -%}
- "baseUrl": "{{base_url}}",
- "wsUrl": "{{ws_url}}",
- "terminalsAvailable": "{{terminals_available}}"
- }</script>
- <script src="/example/static/bundle.js" main="index"></script>
- </body>
- </html>
|