workbench-original.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!-- Copyright (C) Microsoft Corporation. All rights reserved. -->
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <div>asdfasdf</div>
  6. <script>
  7. performance.mark('code/didStartRenderer');
  8. </script>
  9. <meta charset="utf-8" />
  10. <!-- Mobile tweaks -->
  11. <meta name="mobile-web-app-capable" content="yes" />
  12. <meta name="apple-mobile-web-app-capable" content="yes" />
  13. <meta name="apple-mobile-web-app-title" content="Code">
  14. <link rel="apple-touch-icon" href="{{WORKBENCH_WEB_BASE_URL}}/resources/server/code-192.png" />
  15. <!-- Disable pinch zooming -->
  16. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
  17. <!-- Workbench Configuration -->
  18. <meta id="vscode-workbench-web-configuration" data-settings="{{WORKBENCH_WEB_CONFIGURATION}}">
  19. <!-- Workbench Auth Session -->
  20. <meta id="vscode-workbench-auth-session" data-settings="{{WORKBENCH_AUTH_SESSION}}">
  21. <!-- Workbench Icon/Manifest/CSS -->
  22. <link rel="icon" href="{{WORKBENCH_WEB_BASE_URL}}/resources/server/favicon.ico" type="image/x-icon" />
  23. <link rel="manifest" href="{{WORKBENCH_WEB_BASE_URL}}/resources/server/manifest.json" crossorigin="use-credentials" />
  24. <link rel="stylesheet" href="{{WORKBENCH_WEB_BASE_URL}}/out/vs/code/browser/workbench/workbench.css">
  25. </head>
  26. <body aria-label="">
  27. </body>
  28. <!-- Startup (do not modify order of script tags!) -->
  29. <script>
  30. const baseUrl = new URL('{{WORKBENCH_WEB_BASE_URL}}', window.location.origin).toString();
  31. globalThis._VSCODE_FILE_ROOT = baseUrl + '/out/';
  32. </script>
  33. <script>
  34. performance.mark('code/willLoadWorkbenchMain');
  35. </script>
  36. <!-- always ensure built in english NLS messages -->
  37. <script type="module" src="{{WORKBENCH_NLS_FALLBACK_URL}}"></script>
  38. <!-- attempt to load NLS messages in case non-english -->
  39. <script type="module" src="{{WORKBENCH_NLS_URL}}"></script>
  40. <script type="module" src="{{WORKBENCH_WEB_BASE_URL}}/out/vs/code/browser/workbench/workbench.js"></script>
  41. </html>