-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·45 lines (35 loc) · 1.2 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
43
44
45
<!DOCTYPE html>
<html>
<head>
<title>Backbone.js project</title>
<link href="css/style.css" rel="stylesheet" />
</head>
<body>
<div id="wrapper">
<h1>Class Search</h1>
<div class="tools">
Search:<br/>
<input type="text" id="searchBox" /><br/><br/>
Filter:
<div id="filters"></div>
<div id="count"></div>
</div>
<ul id="listing"></ul>
</div>
<script type="text/template" id="person-template">
<span class="list-header"><%= firstname %> <%= lastname %> (<%= type %>)</span>
<div class="details">
home phone: <%= homephone %><br/>
email: <a href="mailto:<%= email %>"><%= email %></a>
</div>
</script>
<script src="js/data.json" type="text/javascript"></script>
<script src="js/libs/jquery-1.10.2.min.js" type="text/javascript"></script>
<script src="js/libs/underscore-min.js" type="text/javascript"></script>
<script src="js/libs/backbone-min.js" type="text/javascript"></script>
<script src="js/routers/router.js" type="text/javascript"></script>
<script src="js/models/person-model.js" type="text/javascript"></script>
<script src="js/views/person-views.js" type="text/javascript"></script>
<script src="js/app.js" type="text/javascript"></script>
</body>
</html>