This repository has been archived by the owner on Jun 26, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
164 lines (133 loc) · 5.1 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
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
<!doctype html>
<html lang="en" >
<head>
<meta charset="utf-8" />
<title>shopgoodwill ... better</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="styles/styles.css">
<script src="bower_components/handlebars/handlebars.min.js"></script>
<script src="javascripts/js-head.min.js"></script>
<!--
Pollyfills to consider
- HTML5 -> html5shiv
- SVG -> fabric.js
- localStorage ->
- transitionEnd
- geoLocation ->
- classList -> classList.js
- touch Events -> ie-touch.js
- media queries -> matchMedia()
- Grid Layout
- CSS transforms -> transformie
-
-->
</head>
<body>
<div class="flex">
<div class="search_nav">
<form role="form" id="search_form" name="searchForm" class="flex search_form">
<div class="input-group terms">
<input class="form-control" id="search-term" name="term" type="text" placeholder="Search">
<span class="input-group-btn">
<button class="form-control btn btn-default" id="input_clear" type="button">Clear</button>
</span>
</div>
<div class="inline-form sellers">
<select id="sellers" name="seller" class="form-control"> </select>
<button id="all_sellers" type="button" class="btn btn-default" >All</button>
</div>
<div class="categories">
<h3>categories</h3>
<div id="selected_categories">
<input id="cat_0" type="radio" class="cat_radio" value="0" checked="true" name="category">
<label id="all_label" title="0" for="cat_0">All</label>
</div>
</div>
<div id="sub_categories" class="sub_categories">
<!-- generated by categories.js -->
</div>
<div id="view_options" class="views">
<h3>auction layout</h3>
<div class="view_buttons">
<a class="view_1" href="1">1</a>
<a class="view_2" href="2">2</a>
<a class="view_3" href="3">3</a>
<a class="view_4 active" href="4">4</a>
</div>
</div>
</form>
</div>
<div class="main">
<div id="gallery" class="gallery">
<!-- BIG IMAGES -->
</div>
<section id="results" class="results_view" data-columns="4">
<!-- SEARCH RESULTS -->
</section>
<section id="favorites" class="favorites">
<!-- FAVORITES -->
</section>
<div class="ui_feedback">
<div id="no-results">No Results. Try broadening your search criteria.</div>
<div id="loading" class="csspinner traditional">Loading</div>
<div id="the_end">The End</div>
</div>
<div id="page-loading" class="page_loading" ></div>
</div>
</div>
<div class="modal fade" id="auctionModal" tabindex="-1" role="dialog" aria-labelledby="basicModal" aria-hidden="true">
<!-- populated by mustache template -->
</div>
<script id="favoritesTemplate" type="text/x-handlebars-template"> </script>
<script id="galleryTemplate" type="text/x-handlebars-template">
{{#each this}}
{{#each images}}
<img src="{{image}}" alt="">
{{/each}}
{{/each}}
</script>
<script id="detailsTemplate" type="text/x-handlebars-template">
{{#each this}}
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title" id="auctionModalLabel">{{title}}</h4>
</div>
<div class="modal-body">
{{#each images}}
<img src="{{image}}" alt="">
{{/each}}
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<a href="http://www.shopgoodwill.com/viewItem.asp?itemID={{id}}" target="_blank" class="btn btn-primary">Go to Auction</a>
</div>
</div>
</div>
{{/each}}
</script>
<script id="auctionTemplate" type="text/x-handlebars-template">
{{#each this}}
<div class="card" ontouchstart="this.classList.toggle('hover');">
<div class="auction">
<div class="card_top">
<span class="auction_ending"><em>ends in</em> {{itemEnd}}</span>
</div>
<a rel="{{itemNumber}}" href="{{itemURL}}" target="_blank" class="image_link">
<img src="{{itemImage}}" alt="" class="auction_thumb">
</a>
<div class="card_bottom">
<h5>{{itemName}}</h5>
<span class="auction_price">${{itemPrice}}</span>
<span class="auction_bids">{{itemBids}} Bids</span>
</div>
</div>
</div>
{{/each}}
</script>
<script src="javascripts/vendor-foot.min.js"></script>
<script src="javascripts/plain.js"></script>
</body>
</html>