forked from frappe/press
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (30 loc) · 917 Bytes
/
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
<!DOCTYPE html>
<html class="h-full overflow-hidden" lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>Frappe Cloud</title>
<link rel="icon" href="/favicon.png" type="image/x-icon" />
</head>
<body class="h-full">
<noscript>
<strong>
Frappe Cloud Dashboard doesn't work properly without JavaScript enabled.
Please enable it to continue.
</strong>
</noscript>
<!-- Main Vue App -->
<div id="app" class="h-full"></div>
<!-- For Teleports -->
<div id="modals"></div>
<div id="popovers"></div>
<script>
{% for key in boot %}
window["{{ key }}"] = {{ boot[key] | tojson }};
{% endfor %}
</script>
<script type="module" src="/src/main.js"></script>
<!-- <script type="module" src="/src2/main.js"></script> -->
</body>
</html>