forked from frappe/builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (23 loc) · 955 Bytes
/
index.html
File metadata and controls
24 lines (23 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en" class="overscroll-none">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/assets/builder/images/frappe_black.png" media="(prefers-color-scheme: light)"/>
<link rel="icon" href="/assets/builder/images/frappe_white.png" media="(prefers-color-scheme: dark)"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <script src="https://cdn.tailwindcss.com"></script> -->
<title>Frappe Builder</title>
</head>
<body class="overscroll-none bg-surface-white no-scrollbar dark:selection:bg-surface-gray-4" style="scrollbar-width: auto;">
<div id="app"></div>
<div id="modals"></div>
<div id="popovers"></div>
<script>
window.csrf_token = "{{ csrf_token }}";
window.builder_path = "{{ builder_path }}";
window.site_name = "{{ site_name }}";
window.is_fc_site = "{{ is_fc_site }}";
</script>
<script type="module" src="/src/main.ts"></script>
</body>
</html>