-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (74 loc) · 3.31 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html ng-app="sotPirates" lang="eng">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="A descriptive island tracker for Sea of Thieves">
<meta name="author" content="Henry Bulmer, Ryan Pelaez">
<title>SoT Pirates</title>
<!-- Bootstrap core CSS -->
<link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src = "node_modules\jquery\dist\jquery.min.js"></script>
<script src = "node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- I C O N S -->
<link href="node_modules/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- C S S -->
<link href="css/general.css" rel="stylesheet">
<link href="css/header.css" rel="stylesheet">
<link href="css/gallery.css" rel="stylesheet">
<link href="css/controls.css" rel="stylesheet">
<link href="css/islandModal.css" rel="stylesheet">
<link href="css/map.css" rel="stylesheet">
<link href="css/footer.css" rel="stylesheet">
<link href="css/about.css" rel="stylesheet">
<link href="css/icons.css" rel="stylesheet">
<link rel="icon" href="assets/SOT-Logo.png" />
<!-- F O N T S -->
<link href="https://fonts.googleapis.com/css?family=Amatic+SC|Yeon+Sung" rel="stylesheet">
<!-- A N G U L A R !-->
<script src="/node_modules/angular/angular.js"></script>
<script src="/node_modules/angular-route/angular-route.min.js"></script>
<script src="/node_modules/angular-ui-bootstrap/dist/ui-bootstrap-tpls.js"></script>
<!-- J S !-->
<script src = "js/app.js"></script>
<!-- G O O G L E O V E R L O R D S -->
<!-- Ads -->
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script> (adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-3900246668916389",
enable_page_level_ads: true
});
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-119308890-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-119308890-1');
</script>
<!-- Chitika -->
</head>
<body>
<header ng-include="'html/header.html'"><main ng-view></main></header>
<main ng-view></main>
<div ng-include="'html/controls.html'"></div>
<footer ng-include="'html/footer.html'"></footer>
<div>
<div class="ad-bottom">
<script type="text/javascript">
( function() {
if (window.innerWidth > 1000){
if (window.CHITIKA === undefined) { window.CHITIKA = { 'units' : [] }; };
var unit = {"calltype":"async[2]","publisher":"SotPirate","width":728,"height":90,"sid":"Chitika Default"};
var placement_id = window.CHITIKA.units.length;
window.CHITIKA.units.push(unit);
document.write('<div id="chitikaAdBlock-' + placement_id + '"></div>');
}
}());
</script>
<script type="text/javascript" src="//cdn.chitika.net/getads.js" async></script>
</div>
</div>
</body>
</html>