diff options
author | Devine Lu Linvega <[email protected]> | 2019-05-10 18:47:08 +0900 |
---|---|---|
committer | Devine Lu Linvega <[email protected]> | 2019-05-10 18:47:08 +0900 |
commit | 3abfc96098ead4db516a10456eb5456f555f9678 (patch) | |
tree | d76bb7d6d9eb8e81d0771ce93c2b472c6e284b53 /index.html | |
parent | f87d4d198372d866ea8c91063965c967d2e58f72 (diff) | |
download | Orca-3abfc96098ead4db516a10456eb5456f555f9678.tar.gz Orca-3abfc96098ead4db516a10456eb5456f555f9678.zip |
Moved index in root
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..9d0254b --- /dev/null +++ b/index.html @@ -0,0 +1,16 @@ +<html> + <head> + <link rel="stylesheet" type="text/css" href="desktop/sources/links/style.css"/> + <title>Orca</title> + </head> + <body> + <script type="module" src="browser/mock/require.js"></script> + <script type="module"> + import Terminal from "desktop/sources/scripts/terminal.js"; + const terminal = new Terminal() + window.terminal = terminal + terminal.install(document.body) + terminal.start() + </script> + </body> +</html> |