-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcatalog1.html
167 lines (153 loc) · 5.93 KB
/
catalog1.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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Catalog 1</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="scripts/jquery.min.js"></script>
<script src="scripts/bootstrap-dropdown.js"></script>
<script type='text/javascript'>
$(document).ready(function(){
$('#topbar').dropdown();
});
</script>
<!-- Le styles -->
<link href="styles/bootstrap.min.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 60px;
}
.container-fluid > .content{
margin-left:280px;
}
.categories li{
}
.categories li:focus{
}
#main-items tbody tr td{
cursor:pointer !important;
}
.highlight td{
font-weight:bold;
}
td.mini-thumbnail img{
max-height:50px;
max-width:100px;
}
td.mini-thumbnail{
text-align:center;
}
</style>
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
</head>
<body>
<div class="topbar">
<div class="topbar-inner">
<div class="container-fluid">
<a class="brand" href="index.html">Project X</a>
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li class="active"><a href="index.html">Sample</a></li>
</ul>
<form class="pull-left" action="">
<input type="text" placeholder="Search">
<button class="btn" type="submit">Go</button>
</form>
<ul class="nav secondary-nav">
<li><a href="#">My Account</a></li>
</ul>
</div>
</div>
</div>
<div class="container-fluid">
<div class="sidebar">
<div class="well span4">
<h2>Filter Results</h2>
<div class='cleaner_h20'></div>
<input type='text' placeholder="Search" class='span4' value='BMW M5'/>
<div class='cleaner_h10'></div>
<input type='text' placeholder="Min Price" class='span2'/> to <input type='text' placeholder="Max Price" class='span2'/>
<div class='cleaner_h10'></div>
<input type='text' placeholder="Min Year" class='span2'/> to <input type='text' placeholder="Max Year" class='span2'/>
<div class='cleaner_h10'></div>
<select class='span4'>
<option>Show All</option>
<option>Show ads by Private Sellers Only</option>
<option>Show ads by Dealers Only</option>
</select>
<div class='cleaner_h20'></div>
<button class='btn'>Reset</button>
<button class='btn primary'>Update</button>
</div>
</div>
<div class="content">
<ul class="breadcrumb">
<li><a href="#">Home</a> <span class="divider">/</span></li>
<li><a href="#">Autos</a> <span class="divider">/</span></li>
<li class="active">BMW</li>
</ul>
<div class='cleaner'></div>
<table class='zebra-striped' id='main-items'>
<thead>
<tr>
<th class='span2'></th>
<th class='span4'>Title</th>
<th class='span2'>Price</th>
<th class='span2'>Location</th>
<th class='span2'>Seller</th>
</tr>
</thead>
<tbody>
<tr>
<td class='mini-thumbnail'><img src='images/sample/car1.jpg'/></td>
<td>BMW M5</td>
<td>$125,000</td>
<td>Seattle, WA</td>
<td>shershams</td>
</tr>
<tr class='highlight'>
<td class='mini-thumbnail'><img src='images/sample/car2.jpg'/></td>
<td>BMW M5 - I paid more, so I'm a featured ad!</td>
<td>$50,000</td>
<td>Seattle, WA</td>
<td>shershams</td>
</tr>
<tr>
<td class='mini-thumbnail'><img src='images/sample/car3.jpg'/></td>
<td>I'm so mean that I wrote such a long title. It's just like a description, but I like to call it title! And as you can see, this text can be wrapped into several lines. No mercy to mean people like me.</td>
<td>$25,000</td>
<td>Seattle, WA</td>
<td>shershams</td>
</tr>
<tr>
<td class='mini-thumbnail'><img src='images/sample/car4.jpg'/></td>
<td>BMW M5</td>
<td>$20,000</td>
<td>Seattle, WA</td>
<td>shershams</td>
</tr>
<tr>
<td class='mini-thumbnail'><img src='images/sample/car5.jpg'/></td>
<td>BMW M5</td>
<td>N/A</td>
<td>Seattle, WA</td>
<td>shershams</td>
</tr>
</tbody>
</table>
<footer>
<p>© Company 2011 <a href='http://www.sherzod.me' target='_blank' title='Professional Web Developer'>Sherzod Kutfiddinov</a></p>
</footer>
</div>
</div>
</body>
</html>