microsoft/qdk
Publicmirrored fromhttps://github.com/microsoft/qdkAvailable
source/playground/public/index.html
27lines · modecode
| 1 | <!-- Copyright (c) Microsoft Corporation. |
| 2 | Licensed under the MIT License. --> |
| 3 | <!doctype html> |
| 4 | <html lang="en"> |
| 5 | <head> |
| 6 | <meta charset="utf-8" /> |
| 7 | <meta name="robots" content="noindex" /> |
| 8 | <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| 9 | <script> |
| 10 | // If this is served under a directory it needs the trailing slash to load the relative paths |
| 11 | if (!window.location.pathname.endsWith("/")) |
| 12 | window.location = window.location + "/"; |
| 13 | window.qscBasePath = new URL("./", window.location).pathname; // e.g. "/qsharp/" |
| 14 | </script> |
| 15 | <link |
| 16 | rel="icon" |
| 17 | href="data:image/gif;base64,R0lGODlhEAAQAAAAACwAAAAAEAAQAAACDvAxdbn9YZSTVntx1qcAADs=" |
| 18 | /> |
| 19 | <link rel="stylesheet" href="libs/katex/github-markdown-light.css" /> |
| 20 | <link rel="stylesheet" href="libs/katex/katex.min.css" /> |
| 21 | <link rel="stylesheet" href="libs/main.css" /> |
| 22 | <title>Q# playground</title> |
| 23 | <script src="libs/monaco/vs/loader.js"></script> |
| 24 | <script src="libs/main.js"></script> |
| 25 | </head> |
| 26 | <body data-theme="light" class="qs-play-body"></body> |
| 27 | </html> |
| 28 | |