-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
35 lines (28 loc) · 1.32 KB
/
home.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
<html>
<head>
<title>Served</title>
<link data-require="[email protected]" data-semver="3.2.0" rel="stylesheet"
href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="styles/styles.css">
<!-- Angular -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.3/angular.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.3/angular-route.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.3.1/angular-ui-router.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-smart-table/2.1.6/smart-table.js"></script>
<!-- D3 -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.1/d3.min.js"></script>
<!-- Misc -->
<script src="https://use.fontawesome.com/b4cdf7f49d.js"></script>
<!-- Served -->
<script src="scripts/color-contrast.js"></script>
<script src="scripts/app.js"></script>
<script src="scripts/game.js"></script>
<!--meta property="og:image" content="https://mineminemine-game.herokuapp.com/resources/thumbnail.png" /-->
</head>
<body ng-app="Served">
<!-- Game board -->
<div ng-controller="GameController">
<ng-include src="'templates/board.html'"></ng-include>
</div>
</body>
</html>