-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
48 lines (45 loc) · 1.49 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
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>Shit Joon Says</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width; initial-scale=1; maximum-scale=1" />
<link href="public/css/bootstrap.min.css" rel="stylesheet">
<script src="jspm_packages/system.js"></script>
<script src="config.js"></script>
<script>
System.import('app/index');
</script>
<style>
body {
/* fallback */
background-color: #1a82f7;
/* Safari 4-5, Chrome 1-9 */
background: -webkit-gradient(linear, left top, right top, from(#1a82f7), to(#2F2727));
/* Safari 5.1, Chrome 10+ */
background: -webkit-linear-gradient(left, #2F2727, #1a82f7);
/* Firefox 3.6+ */
background: -moz-linear-gradient(left, #2F2727, #1a82f7);
/* IE 10 */
background: -ms-linear-gradient(left, #2F2727, #1a82f7);
/* Opera 11.10+ */
background: -o-linear-gradient(left, #2F2727, #1a82f7);
background-color: transparent;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
height: 125px;
line-height: 25px;
}
</style>
</head>
<body>
<div class="container" style="color:white">
<h1>Welcome to Shit Joon Says!</h1>
</div>
<div id='app'>
<div style="text-align: center">
<img src="/images/loading.gif" />
</div>
</div>
</body>
</html>