-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 928 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Your Sky Bill</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../bower_components/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="../bower_components/bootstrap/dist/css/bootstrap-theme.min.css" />
</head>
<body>
<div id="container" class="container">
<div class="row">
<div class="col-sm-12">
<a href="#"><img src="images/sky-logo.jpeg" alt="Sky" /></a>
</div>
</div>
<div id="container-content"></div>
</div>
<!-- Render the React components here -->
<div id="view"></div>
<script src="jspm_packages/system.js"></script>
<script src="config.js"></script>
<script type="text/javascript">
System.import('components/app');
</script>
</body>
</html>