-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (40 loc) · 2.25 KB
/
index.html
File metadata and controls
46 lines (40 loc) · 2.25 KB
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
<!DOCTYPE html>
<html ng-app="moeCalcApp" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>MoE : Equipment Calculator</title>
<meta name="description" content="Hero Equipment calculator for the game March of Empires">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--<link rel="apple-touch-icon" href="apple-touch-icon.png">-->
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<link href='https://fonts.googleapis.com/css?family=Rambla' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body ng-controller="mainCtrl">
<!-- Header and Navigation -->
<header ng-controller="navCtrl" class="main-header">
<h1 class="sitename"><a href="#/">MoE Calc</a></h1>
<ul class="main-nav">
<li ng-repeat="link in links"><a ng-href={{link.path}} ng-class="{selected : isActiveLink(link.path)}">{{link.name}}</a></li>
</ul>
</header>
<!-- Content -->
<div id="page-loader" ng-view></div>
<!-- Footer -->
<footer class="main-footer">
<span>Site Design and Tools ©2016 Lee Earley</span>
<span>March of Empires name and content ©2016 Gameloft, Inc.</span>
</footer>
<!-- Script loading -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular-route.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ngStorage/0.3.6/ngStorage.min.js"></script>
<script src="js/app.js"></script>
<script src="js/controllers/home.js"></script>
<script src="js/services/data.js"></script>
</body>
</html>