forked from hotpi/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (36 loc) · 1.11 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
<!DOCTYPE html>
<!-- <html class="no-js" lang="en" manifest="hotpi.manifest" > -->
<html class="no-js" lang="en" >
<head>
<meta charset="UTF-8">
<!-- Use minimum-scale=1 to enable GPU rasterization -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=0, maximum-scale=1, minimum-scale=1">
<title>HotPi</title>
<link href="/styles/css/materialdesignicons.min.css" media="all" rel="stylesheet" type="text/css" />
<link href="/styles/styles.css" media="all" rel="stylesheet" type="text/css" />
<link href="/static/sassyStyle.css" media="all" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<style>
html {
font-family: Roboto, sans-serif;
}
html, body {
margin: 0;
height: 0;
min-height: 100%;
overflow: hidden;
}
#root {
height: 100%;
padding: 0;
}
</style>
</head>
<body>
<div id="app"></div>
<script src="/static/bundle.js"></script>
</body>
</html>