-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
133 lines (117 loc) · 4.6 KB
/
Copy pathindex.html
File metadata and controls
133 lines (117 loc) · 4.6 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<titleBookhub</title>
<!-- Bootstrap -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!--Font Awesome CSS-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<!--Bookhub Site Css-->
<link href="assets/css/main.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- NAVBAR START-->
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">BookHub <span> –searching books made easy!</span></a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li>Total Books: <span id="totalbooks"><!--13--></span></li>
<li>Total Bookmarks: <span id="totalbookmarks">23</span></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</nav>
<!-- NAVBAR END-->
<div class="container">
<div class="row">
<!--Left Part-->
<div class="col-xs-12 col-sm-12 col-md-6">
<!--SEARCH AND LIST BOOKMARKS START-->
<div class="row left-search-listbookmark">
<!--Search Form-->
<div class="col-xs-12 col-sm-8">
<form class="search-form" role="search">
<div class="input-group">
<input type="text" class="form-control input-lg" placeholder="Search (by name, author, rating)">
<span class="input-group-btn">
<button type="submit" class="btn btn-default btn-lg">
<span class="glyphicon glyphicon-search"></span>
</button>
</span>
</div>
</form>
</div>
<!--List Bookmarks-->
<div class="col-xs-12 col-sm-4">
<a type="button" class="btn btn-default btn-lg btn-listbookmarks">
<span aria-hidden="true"><i class="fa fa-bookmark-o"></i></span>List Bookmarks</a>
</div>
</div>
<!--SEARCH AND LIST BOOKMARKS END-->
<!--BOOKS LIST START-->
<div class="hline"></div>
<ul class="nav nav-pills nav-stacked books-list clearfix">
</ul>
<div class="hline"></div>
<!--BOOKS LIST END-->
<!--SORT SECTION START-->
<div class="text-center sort-section">
<a type="button" class="btn btn-default btn-lg btn-sort disabled">
<span aria-hidden="true"><i class="fa fa-sort"></i></span>Sort By
</a>
<div class="radio-buttons">
<div class="radio radio-inline">
<label><input type="radio" name="optSort">Rating</label>
</div>
<div class="radio radio-inline">
<label><input type="radio" name="optSort">Price</label>
</div>
</div>
</div>
<!--SORT SECTION END-->
</div>
<!--Right Part-->
<div class="col-xs-12 col-sm-12 col-md-6">
<!--BOOK ALL DETAILS START-->
<div class="tab-content books-details">
</div>
<!--BOOK ALL DETAILS END-->
</div>
</div>
</div>
<!--footer-->
<!--<div id="footer">
<div class="container-fluid">
<h6>Deepak Kumar Jain © 2015</h6>
</div>
</div>-->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<!--Bookhub Main CSS-->
<script src="assets/js/main.js"></script>
</body>
</html>