-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (35 loc) · 1.17 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
37
38
39
40
41
42
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery, Ajax, and JSON</title>
<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<nav class="col-sm-3">
<button class="btn btn-default" id="menuToggle">Show/Hide Menu</button>
<ul class="list-group">
<li class="list-group-item">
<a href="http://davestrus.com/data/person.json" data-remote="true">Load one person</a>
</li>
<li class="list-group-item">
<a href="http://davestrus.com/data/people.json" data-remote="true">Load all people</a>
</li>
</ul>
</nav>
<main class="well col-sm-6">
<ul id="people"></ul>
</main>
<li id="template" class="hidden list-group-item">
{{ person.firstName }} {{ person.lastName }}
({{ person.secret }})
</li>
<script src="js/jquery.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>