lab.html 931 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!--
  2. Copyright (c) Jupyter Development Team.
  3. Distributed under the terms of the Modified BSD License.
  4. -->
  5. <!DOCTYPE HTML>
  6. <html>
  7. <head>
  8. <meta charset="utf-8">
  9. <title>{{page_title}}</title>
  10. {% if mathjax_url %}
  11. <script type="text/javascript" src="{{mathjax_url}}?config={{mathjax_config}}&amp;delayStartupUntil=configured" charset="utf-8"></script>
  12. {% endif %}
  13. <link href="{{static_prefix}}/jupyterlab.css" rel="stylesheet">
  14. </head>
  15. <body>
  16. <script id='jupyter-config-data' type="application/json">{
  17. "baseUrl": "{{base_url | urlencode}}",
  18. "wsUrl": "{{ws_url| urlencode}}",
  19. "notebookPath": "{{notebook_path | urlencode}}"
  20. }</script>
  21. <script src="{{static_prefix}}/loader.bundle.js" type="text/javascript" charset="utf-8"></script>
  22. <script>
  23. jupyter.ensure('lab/jupyterlab.bundle.js', function(requireFunc) {
  24. requireFunc("jupyterlab-extension@0.1.0/index.js");
  25. });
  26. </script>
  27. </body>
  28. </html>