-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresults.html
114 lines (111 loc) · 5.69 KB
/
results.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
<!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.0">
<title>Travel Through Time - The History-Lover's Travel Itinerary</title>
<!-- Foundation CSS Framework -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.7.4/css/foundation.min.css" />
<!-- jQuery UI Style -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css">
<!-- Google Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&display=swap">
<!-- Custom Styling -->
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<!-- Header -->
<header>
<div class="title_div grid-x">
<!-- Title & link to index -->
<div class="title_text cell small-12 medium-auto">
<h1 class="main_title"><a href="./index.html">Travel Through Time</a></h1>
<div class="secondary_title">The History Lover's Travel Itinerary</div>
</div>
<!-- Button to go to itinerary page -->
<div class="title_buttons cell small-12 medium-shrink">
<button class="go_to_my_itinerary" id="go_to_my_itinerary">GO TO MY ITINERARY</button>
<button class="settings" data-open="settingsModal"><i class="fas fa-cog"></i></button>
</div>
</div>
</header>
<!-- Main Body Content -->
<main class="grid-x">
<div class="left_column_div sidebar cell small-12 medium-5 large-4">
<!-- Sidebar -->
<!-- Adjust search results -->
<div class="sidebar-element">
<h3>Adjust Search Results</h3>
<div class="search-params" id="adjust-results">
<!-- Radio select options -->
<div class="grid-y">
<!-- Historic Buildings -->
<div class="cell radio-select">
<input type="radio" id="historic" name="search-type" value="0">
<label for="historic">Historic Buildings</label>
</div>
<!-- Tourist Sites -->
<div class="cell radio-select">
<input type="radio" id="sights" name="search-type" value="0">
<label for="sights">Tourist Sites</label>
</div>
<!-- Heritage Sites, including UNESCO -->
<div class="cell radio-select">
<input type="radio" id="heritage" name="search-type" value="0">
<label for="heritage">Heritage Sites</label>
</div>
<!-- Museums -->
<div class="cell radio-select">
<input type="radio" id="museum" name="search-type" value="0">
<label for="museum">Museums</label>
</div>
<!-- Cultural Centers -->
<div class="cell radio-select">
<input type="radio" id="culture" name="search-type" value="0">
<label for="culture">Cultural Centers</label>
</div>
<!-- Man-made, like bridges, lighthouses, etc. -->
<div class="cell radio-select">
<input type="radio" id="manmade" name="search-type" value="0">
<label for="manmade">Man-made Locations</label>
</div>
<!-- Natural, like rivers, dunes, etc. -->
<div class="cell radio-select">
<input type="radio" id="natural" name="search-type" value="0">
<label for="natural">Natural Locations</label>
</div>
<!-- National Parks, like Arches or Yellowstone -->
<div class="cell radio-select">
<input type="radio" id="nationalpark" name="search-type" value="0">
<label for="nationalpark">National Parks</label>
</div>
</div>
</div>
</div>
</div>
<!-- Search results (dynamically added) -->
<div class="search-panel cell small-12 medium-7 large-8">
</div>
</main>
<!-- Modal -->
<div class="reveal settings-body" id="settingsModal" data-reveal>
<div class="settings-content"></div>
<button class="close-button" data-close aria-label="Close modal" type="button">
<span aria-hidden="true">×</span>
</button>
</div>
<!-- jQuery & jQuery UI Scripts -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<!-- Foundation Framework Script -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.7.4/js/foundation.min.js"></script>
<!-- Moment.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<!-- Custom Scripting -->
<script src="./assets/js/script.js"></script>
<script src="./assets/js/search.js"></script>
</body>
</html>