-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (23 loc) · 806 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
<!DOCTYPE html>
<html class="min-h-screen">
<head>
<meta charset="utf-8">
<title>#OpenTo...</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{content-for "head"}}
<link integrity="" rel="stylesheet" href="/@embroider/core/vendor.css">
<link integrity="" rel="stylesheet" href="/assets/open-to-dot-dot-dot.css">
{{content-for "head-footer"}}
</head>
<body class="min-h-screen">
{{content-for "body"}}
<script src="/@embroider/core/vendor.js"></script>
<script type="module">
import Application from './app/app';
import environment from './app/config/environment';
Application.create(environment.APP);
</script>
{{content-for "body-footer"}}
</body>
</html>