index.html 435 B

1234567891011121314151617
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>JupyterLab Custom App</title>
  5. </head>
  6. <body>
  7. <script id='jupyter-config-data' type="application/json">{
  8. {% for key, value in page_config.items() -%}
  9. "{{ key }}": "{{ value }}",
  10. {% endfor -%}
  11. "baseUrl": "{{base_url}}",
  12. "wsUrl": "{{ws_url}}",
  13. "terminalsAvailable": "{{terminals_available}}"
  14. }</script>
  15. <script src="/example/static/bundle.js" main="index"></script>
  16. </body>
  17. </html>