-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (64 loc) · 3.04 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CPU Browser</title>
<meta name="description" content="Search and Browse for CPUs Amazon and Newegg with Benchmarks">
<meta name="author" content="Clifton Rapier - CSCE 655">
<link rel="stylesheet" href="css/jquery-ui.min.css">
<link rel="stylesheet" href="css/cpu_browser.css">
<script src="js/jquery-2.2.3.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/bigSemantics/Readyable.js"></script>
<script src="js/bigSemantics/BSAutoSwitch.js"></script>
<script src="js/bigSemantics/BSService.js"></script>
<script src="js/bigSemantics/BSExtension.js"></script>
<script src="js/bigSemantics/BSUtils.js"></script>
<script src="js/bigSemantics/ParsedURL.js"></script>
<script src="js/bigSemantics/Downloader.js"></script>
<script src="js/bigSemantics/simplBase.js"></script>
<script src="js/bigSemantics/RepoMan.js"></script>
<script src="js/bigSemanticsFunctions.js"></script>
<script src="js/cpu_database.js"></script>
<script src="js/cpu_item.js"></script>
<script src="js/search_filter.js"></script>
<script src="js/resizing.js"></script>
<script src="js/cpu_browser.js"></script>
</head>
<body>
<div id="page_content">
<div id="top_bar">
<img src="img/cpu_icon.png" id="title_icon">
<div id="page_title">CPU Browser</div>
<input id="search_box" type="text" placeholder="Search"/>
<select id="sort_dropdown">
<option value="benchmark_hi_lo">Sort by Benchmark High to Low</option>
<option value="benchmark_lo_hi">Sort by Benchmark Low to High</option>
<option value="price_hi_lo">Sort by Price High to Low</option>
<option value="price_lo_hi">Sort by Price Low to High</option>
<option value="rating_hi_lo">Sort by Rating High to Low</option>
<option value="rating_lo_hi">Sort by Rating Low to High</option>
</select>
<img src="img/share_icon.png" id="share_url_icon">
</div>
<div id="bottom_area">
<div id="side_bar">
<div class="filter_title">Socket Type</div>
<input id="socket_lga2011" type="checkbox" class="filter_option filter_function"> LGA 2011<br>
<input id="socket_lga2011v3" type="checkbox" class="filter_option filter_function"> LGA 2011-v3<br>
<input id="socket_lga1150" type="checkbox" class="filter_option filter_function"> LGA 1150<br>
<input id="socket_lga1151" type="checkbox" class="filter_option filter_function"> LGA 1151<br>
<input id="socket_lga1155" type="checkbox" class="filter_option filter_function"> LGA 1155<br>
<input id="socket_amd3p" type="checkbox" class="filter_option filter_function"> Socket AM3+<br>
<div class="filter_title">Brand</div>
<input id="brand_intel" type="checkbox" class="filter_option filter_function"> Intel<br>
<input id="brand_amd" type="checkbox" class="filter_option filter_function"> AMD<br>
<div class="filter_title">Price</div>
<div id="price_slider"></div>
<div id="current_price_range" class="filter_option">$0 - $1000</div>
</div>
<div id="list_area"></div>
</div>
</div>
</body>
</html>