-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
61 lines (45 loc) · 1.84 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
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en" ng-app="appName">
<head>
<base href="/"/>
<!-- <base href="/index.html"> -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>BigCommerce Quick Links</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,100,300,700,600' rel='stylesheet' type='text/css'>
<link href="assets/dist/css/style.css" rel="stylesheet">
<!-- <script src="http://localhost:9000/livereload.js"></script> -->
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body ng-controller="main" class="{{mobile}}">
<div class="notice-control container" ng-controller="notice">
<!-- <div ng-include="'partials/header.html'"></div> -->
<div id="notices"></div>
<ng-view id="view" autoscroll="true"></ng-view>
<!-- <div ng-include="'partials/footer.html'"></div> -->
</div>
<div class="border"></div>
<!-- firebase -->
<script src="https://www.gstatic.com/firebasejs/4.8.1/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyC0BjDRHcJKgD4kjr4vXX9DnKs-hon3cXo",
authDomain: "quicklinks-bcb92.firebaseapp.com",
databaseURL: "https://quicklinks-bcb92.firebaseio.com",
projectId: "quicklinks-bcb92",
storageBucket: "quicklinks-bcb92.appspot.com",
messagingSenderId: "888997348006"
};
firebase.initializeApp(config);
</script>
<script src="dist/bundle.js"></script>
<script src="assets/js/modernizr.custom.js"></script>
</body>
</html>