-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (40 loc) · 1.32 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Bareback - A Barebones Backbone Webapp</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bareback.css">
</head>
<body>
<div class="container row">
<h1>Address book</h1>
<div class="contact-list"></div>
</div>
<!-- App dependencies -->
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="node_modules/underscore/underscore-min.js"></script>
<script src="node_modules/backbone/backbone-min.js"></script>
<!-- App files - models, views, etc -->
<script src="models/Contact.js"></script>
<script src="collections/ContactList.js"></script>
<script src="views/ContactListView.js"></script>
<script src="views/ContactListItem.js"></script>
<!-- The actual app file-->
<script src="app.js"></script>
<!-- A template, used by the list item view -->
<!-- Data properties are accessed in between <%= %> tags -->
<script id="viewTemplate" type="application/template">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><%= name %></h3>
</div>
<div class="panel-body">
<div class="tel"><%=number%></div>
<div class="email"><a href="mailto:<%=email%>"><%= email %></a></div>
<div class="url"><a href="<%=www%>"><%=www%></a></div>
</div>
</div>
</script>
</body>
</html>