-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (31 loc) · 1.19 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>AngularJS/Bootstrap Match Game</title>
<link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" href="lib/bootstrap/css/bootstrap-theme.min.css" />
<link rel="stylesheet" href="css/app.css" />
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>AngularJS/Bootstrap Match Game</h1>
<p>This is a simple "card match" game written with AngularJS and Bootstrap CSS.</p>
<p><a href="http://github.com/zoul0813/angularjs-match" class="btn btn-primary btn-lg">View Source on GitHub</a></p>
</div>
<div ng-view>
<p>Nothing {{'yet' + '!' }}</p>
</div>
<footer class="text-center">
<small>Copyright © 2014 - David Higgins. All Rights Reserved.</small>
</footer>
</div>
<script src="lib/jquery/jquery-1.11.0.min.js"></script>
<script src="lib/angular/angular.js"></script>
<script src="lib/angular/angular-route.min.js"></script>
<script src="lib/angular-ui/bootstrap/ui-bootstrap-tpls-0.10.0.js"></script>
<script src="app/app.js"></script>
<script src="app/match/matchController.js"></script>
</body>
</html>