error.html 803 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!DOCTYPE html>
  2. <!--
  3. Copyright (c) Jupyter Development Team.
  4. Distributed under the terms of the Modified BSD License.
  5. -->
  6. <html>
  7. <head>
  8. <meta charset="utf-8">
  9. <title>{% block title %}{{page_title | escape}}{% endblock %}</title>
  10. {% block favicon %}<link rel="shortcut icon" type="image/x-icon" href="/static/favicons/favicon.ico">{% endblock %}
  11. </head>
  12. <body>
  13. {% block stylesheet %}
  14. <style type="text/css">
  15. /* disable initial hide */
  16. div#header, div#site {
  17. display: block;
  18. }
  19. </style>
  20. {% endblock %}
  21. {% block site %}
  22. <div class="error">
  23. {% block h1_error %}
  24. <h2>JupyterLab assets not detected, please rebuild</h2>
  25. <script>
  26. console.error('Missing assets in "{{static_dir | escape}}"');
  27. </script>
  28. {% endblock h1_error %}
  29. </header>
  30. {% endblock %}
  31. </body>
  32. </html>