diff options
author | Akshay <[email protected]> | 2021-06-12 06:18:00 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2021-06-12 06:18:00 +0100 |
commit | 987ce60b9fc60ccdb91e0d271fcba10a0a6cf51a (patch) | |
tree | cab9c1d8170fdfe8423e3f7713af889206a2ce5b /www/index.html | |
parent | ad701b3f1959fa7c761668da5164518aa9d122cd (diff) |
re-add www
Diffstat (limited to 'www/index.html')
m--------- | www | 0 | ||||
-rw-r--r-- | www/index.html | 26 |
2 files changed, 26 insertions, 0 deletions
diff --git a/www b/www deleted file mode 160000 | |||
Subproject 9ac3dff9ebea4675e5c478bcdcbc0fd547d1529 | |||
diff --git a/www/index.html b/www/index.html new file mode 100644 index 0000000..01ba57d --- /dev/null +++ b/www/index.html | |||
@@ -0,0 +1,26 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html> | ||
3 | <head> | ||
4 | <meta charset="utf-8"> | ||
5 | <title>CSTea</title> | ||
6 | </head> | ||
7 | <style> | ||
8 | .grid-container { | ||
9 | display: grid; | ||
10 | grid-template-columns: 1fr 1fr; | ||
11 | grid-gap: 20px; | ||
12 | } | ||
13 | </style> | ||
14 | <body> | ||
15 | <noscript>This page contains webassembly and javascript content, please enable javascript in your browser.</noscript> | ||
16 | <script src="./bootstrap.js"></script> | ||
17 | <div class="grid-container"> | ||
18 | <div id="source-code"></div> | ||
19 | <div> | ||
20 | <pre id="cst"> | ||
21 | </pre> | ||
22 | </div> | ||
23 | </div> | ||
24 | <!-- button id="gen-cst">Generate CST</button --> | ||
25 | </body> | ||
26 | </html> | ||