-
Notifications
You must be signed in to change notification settings - Fork 18
/
template.html
111 lines (98 loc) · 3.23 KB
/
template.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<link rel="icon" type="image/png" href="assets/img/favicon-16x16.png" sizes="16x16"/>
<link rel="icon" type="image/png" href="assets/img/favicon-32x32.png" sizes="32x32"/>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap&subset=cyrillic" rel="stylesheet">
<base href="/">
<link rel="stylesheet" href="./assets/fonts/roboto.css">
<style>
html,
body {
height: 100%;
overflow: hidden;
padding: 0;
margin: 0;
background-color: var(--app-background);
}
@font-face {
font-family: Monaco;
src: url("./assets/fonts/monaco.ttf");
}
body {
font-family: Monaco;
font-size: 12px
}
</style>
<meta charset="UTF-8"/>
<title>WAVES IDE</title>
</head>
<body>
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KR7HQLF" height="0" width="0"
style="display:none;visibility:hidden"></iframe>
</noscript>
<div id="container" style="width: 100%; height: 100%"></div>
<% if (htmlWebpackPlugin.options.production) { %>
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
(function (d, w, c) {
(w[c] = w[c] || []).push(function () {
try {
w.yaCounter50915843 = new Ya.Metrika2({
id: 50915843,
clickmap: true,
trackLinks: true,
accurateTrackBounce: true,
webvisor: true
});
} catch (e) {
}
});
var n = d.getElementsByTagName("script")[0],
s = d.createElement("script"),
f = function () {
n.parentNode.insertBefore(s, n);
};
s.type = "text/javascript";
s.async = true;
s.src = "https://mc.yandex.ru/metrika/tag.js";
if (w.opera == "[object Opera]") {
d.addEventListener("DOMContentLoaded", f, false);
} else {
f();
}
})(document, window, "yandex_metrika_callbacks2");
</script>
<noscript>
<div><img src="https://mc.yandex.ru/watch/50915843" style="position:absolute; left:-9999px;" alt=""/></div>
</noscript>
<!-- /Yandex.Metrika counter -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-75283398-8"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-75283398-8');
</script>
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push(
{'gtm.start': new Date().getTime(), event: 'gtm.js'}
);
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-KR7HQLF');</script>
<% }%>
<script src="editor.bundle.js"></script>
<!--<script src="ride-language.bundle.js"></script>-->
</body>
</html>