-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 713 Bytes
/
index.html
File metadata and controls
27 lines (24 loc) · 713 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Diplomacy</title>
<link rel="stylesheet" href="bower_components/angular-hotkeys/build/hotkeys.min.css">
<link rel="stylesheet" href="bower_components/components-font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="css/screen.css"/>
<link rel="stylesheet" href="css/map.css"/>
</head>
<body>
<div class="menu-wrapper">
<div class="menu">
<span>Diplomacy</span>
<menu></menu>
</div>
</div>
<div class="container">
<ng-view></ng-view>
</div>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="bower_components/requirejs/require.js" data-main="js/main.js"></script>
</body>
</html>