-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
51 lines (48 loc) · 1.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quark Playground</title>
<link rel="shortcut icon" href="https://cdn.jsdelivr.net/npm/quark-static@latest/favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" href="/src/index.css"/>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JY2PV4VDZN"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-JY2PV4VDZN');
</script>
</head>
<body>
<div id="app">
<app-menu></app-menu>
<div id="code">
<div id="code-tabs"></div>
<div id="code-editors"></div>
</div>
<div id="preview">
<div class="toper-bar">
<div class="title">
Quark Playground
<span>v0.49.1</span>
</div>
<div class="items-right">
<a class="github-link" href="https://github.com/hellof2e/quark-core" target="_blank">
</a>
</div>
</div>
<div class="preview-banner">
<div class="preview-banner__text">Result</div>
<div class="preview-banner__loading"></div>
</div>
<iframe
src="./preview.html"
id="preview-iframe"
></iframe>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>