-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhikedetails.html
150 lines (147 loc) · 6.46 KB
/
hikedetails.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hike Details - HIKE FINDER</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.0.0/animate.min.css" />
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<!-- Navigation -->
<header>
<nav>
<div class="nav-wrapper black lighten-2">
<a href="index.html" class="brand-logo">HIKE FINDER</a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="index.html">Return to Homepage</a></li>
</ul>
</div>
</nav>
</header>
<!-- Hero -->
<section class="hero">
</section>
<!--Main with details-->
<main>
<div class="row">
<div class="section">
<!-- Container for dynamic elements -->
<div id="api-hike-detailp2" class="container blue lighten-5 col l7 flow-text">
</div>
</div>
<div class="section col l5">
<div class="container col s12">
<h5 class="flow-text">Things you may need:</h5>
<div>
<ul>
<!-- List item element -->
<li>
<p>
<label>
<input type="checkbox" />
<span>Sun protection: sunglasses, sun-protective clothes and sunscreen</span>
</label>
</p>
</li>
<li>
<p>
<label>
<input type="checkbox" />
<span>Navigation: map, compass, altimeter, GPS device, personal locator
beacon (PLB) or satellite messenger</span>
</label>
</p>
</li>
<li>
<p>
<label>
<input type="checkbox" />
<span>First aid: including foot care and insect repellent (as needed)</span>
</label>
</p>
</li>
<li>
<p>
<label>
<input type="checkbox" />
<span>Fire: matches, lighter, tinder and/or stove</span>
</label>
</p>
</li>
<li>
<p>
<label>
<input type="checkbox" />
<span>Shelter: carried at all times (can be a light emergency bivy)</span>
</label>
</p>
</li>
<li>
<p>
<label>
<input type="checkbox" />
<span>Extra food: Beyond the minimum expectation</span>
</label>
</p>
</li>
<li>
<p>
<label>
<input type="checkbox" />
<span>Extra water: Beyond the minimum expectation</span>
</label>
</p>
</li>
<li>
<p>
<label>
<input type="checkbox" />
<span>Knife: plus a gear repair kit</span>
</label>
</p>
</li>
<li>
<p>
<label>
<input type="checkbox" />
<span>Extra clothes: Beyond the minimum expectation</span>
</label>
</p>
</li>
<li>
<p>
<label>
<input type="checkbox" />
<span>Headlamp: plus extra batteries</span>
</label>
</p>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<div class="section">
<div class="row center-align">
<h7 class="flow-text col s12 col l12">Don't have what you need? No Problem!</h7>
<a href="#" class="waves-effect teal darken-4 btn pulse" id="stores-btn"><i
class="material-icons right">shopping_cart</i>See Stores
Nearby</a>
</div>
</div>
</main>
<footer class="page-footer black lighten-2">
<div class="footer-copyright black lighten-2">
<div class="container">
© HikeFinder
</div>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="./assets/js/hikedetails.js"></script>
</body>
</html>