forked from vernonk/backbone-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (63 loc) · 2.49 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Charlotte.js | Our Library</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="/components/bootstrap/css/bootstrap.css">
<link rel="stylesheet" href="css/screen.css">
</head>
<body>
<div class="app">
<div class="navbar">
<div class="navbar-inner">
<a class="brand" href="#">Our Library</a>
<ul class="nav">
<li class="active"><a href="#/">Home</a></li>
<li class="add"><a href="#">Add a book</a></li>
</ul>
</div>
</div>
<ul class="bookshelf thumbnails">
</ul>
<ul class="nav nav-pills">
<li class="active">
<a href="#/">All Books</a>
</li>
<li><a href="#/reading">Reading</a></li>
<li><a href="#/completed">Completed</a></li>
</ul>
<!-- Add Form Modal -->
<div class="addForm modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<form name="addBook" id="addBook" action="#" method="post">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3>Add a new book</h3>
</div>
<div class="modal-body">
<label for="title">Title</label>
<input type="text" name="title" id="title" placeholder="JavaScript: The Good Parts">
<label for="author">Author</label>
<input type="text" name="author" id="author" placeholder="Douglas Crockford">
<label for="img">Image:</label>
<input type="text" name="img" id="img" placeholder="filename.png">
<span class="help-block">Filename only. All book covers should be stored in /images/books. Will use placeholder.gif as default.</span>
<label for="completed" class="checkbox">
<input type="checkbox" name="completed" value="true"> Completed
</label>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<button type="submit" class="btn btn-primary">Save changes</button>
</div>
</form>
</div>
</div>
<script data-main="js/main" src="components/requirejs/require.js"></script>
</body>
</html>