index.html 598 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>JupyterLab Custom App</title>
  5. <script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_CHTML-full,Safe&amp;delayStartupUntil=configured"></script>
  6. </head>
  7. <body>
  8. <script id='jupyter-config-data' type="application/json">{
  9. {% for key, value in page_config.items() -%}
  10. "{{ key }}": "{{ value }}",
  11. {% endfor -%}
  12. "baseUrl": "{{base_url}}",
  13. "wsUrl": "{{ws_url}}",
  14. "terminalsAvailable": "{{terminals_available}}"
  15. }</script>
  16. <script src="/example/static/bundle.js" main="index"></script>
  17. </body>
  18. </html>