-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
29 lines (23 loc) · 971 Bytes
/
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
<!doctype html>
<html lang="en" ng-app="spacegame" ng-controller="MainController">
<head>
<meta charset="utf-8">
<title>Spacegame</title>
<link rel="stylesheet" href="css/style.css">
<script src="/js/main.js"></script>
<!--<script src="//cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script>-->
</head>
<body>
<nav class="{{active}}" ng-click="$event.preventDefault()">
<!-- When a link in the menu is clicked, we set the active variable -->
<a href="#" class="home" ng-click="active='overview'">Overview</a>
<!--<a href="#" class="planets" ng-click="active='planets'">Planets</a>-->
<!--<a href="#" class="planet-detail" ng-click="active='planet-detail'">Planet Detail</a>-->
<!--<a href="#" class="fleets" ng-click="active='fleets'">Fleets</a>-->
<!--<a href="#" class="fleet-detail" ng-click="active='fleet-detail'">Fleet Detail</a>-->
</nav>
<div>
<ng-include src="'main/main.html'"></ng-include>
</div>
</body>
</html>