-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
75 lines (54 loc) · 2.19 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
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html ng-app="page" style="height: 100%">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.9/angular.min.js"></script>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<!-- My Stylesheets -->
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="./style/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="./style/style.css" />
<!-- Load in Data, should be json but using js files because of Github hosting -->
<script src="./data/members.js"></script>
<script src="./data/games.js"></script>
<script src="./data/page.js"></script>
<script src="./data/redirects.js"></script>
<script src="./data/catalog.js"></script>
<script src="./data/events.js"></script>
<script src="./data/arcade.js"></script>
<!-- My Scripts -->
<script src="./scripts/app.js"></script>
<title>SGDC</title>
<meta name="description" content="The Game Development Club at Stevens Institute of Technology in Hoboken, New Jersey." />
<link rel="shortcut icon" href="images/favicon.png" />
</head>
<body ng-controller="PageController as pgCtrl" style="padding-top: 5px !important;" class="bodyOverride" ng-init="pgCtrl.checkPage()">
<navbar></navbar>
<div class="container">
<jumbotron></jumbotron>
</div> <!-- /container -->
</body>
<script type="text/javascript">
//Google Analytics - Currently go to Adam's Google Acct
(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','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-80139710-2', 'auto');
ga('send', 'pageview');
</script>
<script>
if (window.location.protocol != "https:" && window.location.protocol != "file:"){ //force https
window.location.protocol = "https";
}
</script>
</html>