-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (59 loc) · 2.3 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
62
63
64
<!doctype html>
<html ng-app="instantSearch">
<head>
<meta charset="utf-8" />
<meta name="author" content="Boobs and more" />
<title>Movie Boob Rating</title>
<meta name="description" content="Boobs and more movie reviews">
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<script src="js/angular.min.js"></script>
<script src="js/jquery-2.1.4.min.js"></script>
<script src="js/ui-bootstrap-tpls-0.13.0.js"></script>
<script src="js/angular-mongolab.js"></script>
<script src="js/angular-cookies-1.0.0rc10.js"></script>
<script src="js/services.js"></script>
<script src="js/app.js"></script>
<script src="js/controllersMain.js"></script>
<!-- add styles -->
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link href="css/bootstrap.min.css" rel="stylesheet" />
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-66917786-1', 'auto');
ga('send', 'pageview');
</script>
<script>
// Load the SDK asynchronously
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
</head>
<body>
<h1>
<span>Movie Boob Rating</span>
<div ng-controller="FacebookCtrl">
<fb:login-button scope="public_profile,email" onlogin="CheckLoginState();"></fb:login-button>
</div>
</h1>
<div class="container" ng-controller="TabsCtrl">
<div class="row">
<div class="col-md-12">
<tabset>
<tab ng-repeat="tab in tabs" ng-model="tab" heading="{{tab.title}}" active="tab.active" disable="tab.disabled">
<div ng-include src="tab.url"> </div>
</tab>
</tabset>
</div>
</div>
</div>
</body>
</html>