lab.html 708 B

12345678910111213141516171819202122232425262728293031
  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. </head>
  14. <body>
  15. <script id='jupyter-config-data' type="application/json">{
  16. "baseUrl": "{{base_url | urlencode}}",
  17. "wsUrl": "{{ws_url| urlencode}}",
  18. "notebookPath": "{{notebook_path | urlencode}}"
  19. }</script>
  20. <script src="{{static_prefix}}/bundle.js" type="text/javascript" charset="utf-8"></script>
  21. </body>
  22. </html>