generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbrewery.html
353 lines (349 loc) · 15.9 KB
/
brewery.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css"
/>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="assets/css/style.css" type="text/css" />
<title>BREWERY | Polygonal Brewing Co.</title>
</head>
<body class="d-flex flex-column">
<!-- HEADER -->
<header class="sticky-top">
<div class="nav-container container-fluid bg-custom">
<nav class="navbar navbar-expand-md navbar-dark">
<!-- LOGO -->
<a class="navbar-brand logo" href="index.html">
<img
src="assets/images/polygonal-logo-white-v2.png"
alt="Polygonal Brewing Logo"
/>
</a>
<!-- TOGGLE NAV ICON ON MOBILE -->
<button
class="navbar-toggler ml-auto"
type="button"
data-toggle="collapse"
data-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<!-- NAVIGATION -->
<div
class="collapse navbar-collapse"
id="navbarNavDropdown"
>
<ul id="nav" class="navbar-nav ml-auto">
<li class="nav-item text-center">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item text-center">
<a class="nav-link" href="beers.html">Beers</a>
</li>
<li class="nav-item text-center">
<a class="nav-link active" href="brewery.html">
The Brewery
<span class="sr-only">
(current)
</span>
</a>
</li>
<li class="nav-item text-center">
<a class="nav-link" href="visit.html">Visit</a>
</li>
</ul>
</div>
</nav>
</div>
</header>
<section class="page-content">
<div class="container content-container">
<!-- HEADER -->
<div class="text-center">
<h2 class="uppercase center-title">The Brewery</h2>
</div>
<!-- SLIDESHOW -->
<div class="row">
<div
class="col carousel slide"
data-ride="carousel"
id="homepage-carousel"
data-interval="6000"
data-touch="true"
>
<ol class="carousel-indicators">
<li
data-target="#homepage-carousel"
data-slide-to="0"
class="active"
></li>
<li
data-target="#homepage-carousel"
data-slide-to="1"
></li>
<li
data-target="#homepage-carousel"
data-slide-to="2"
></li>
<li
data-target="#homepage-carousel"
data-slide-to="3"
></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img
class="d-block w-100"
src="assets/images/brewery-photo1.jpg"
alt="Brewers surrounded by fermentation tanks"
/>
</div>
<div class="carousel-item">
<img
class="d-block w-100"
src="assets/images/brewery-photo2.jpg"
alt="Bag of malt near fermenter"
/>
</div>
<div class="carousel-item">
<img
class="d-block w-100"
src="assets/images/brewery-photo4.jpg"
alt="Pouring beer from tank tap"
/>
</div>
<div class="carousel-item">
<img
class="d-block w-100"
src="assets/images/brewery-photo3.jpg"
alt="Beer on canning line"
/>
</div>
</div>
</div>
</div>
<!-- TEXT CONTENT -->
<div class="row row-buffer">
<div class="col-md-4">
<div class="text-center">
<h3>Who we are</h3>
</div>
<p>
We started as a group of home brewers passionate
with beer and brewing. After winning a few home
brewing competitions, we decided to jump into the
deep end and start brewing professionally. Five
years later here we are, still brewing with a
passion, bringing even more excellence and expertise
to our craft.
</p>
</div>
<div class="col-md-4">
<div class="text-center">
<h3>What we do</h3>
</div>
<p>
Our goal is to use the tradition of beer as a
springboard into creativity. Every beer is a passion
project, brewed with the highest quality
ingredients, each recipe fine-tuned to perfection.
We want every single one of our drinks to be a
delight to consume, and they certainly are to our
brewers.
</p>
</div>
<div class="col-md-4">
<div class="text-center">
<h3>Why we do it</h3>
</div>
<p>
We love beer and we love to make beer, but beer
would be nothing without people. We believe beer is
a delicious way to bring people together. The
community around us has been essential in keeping
this project going, and by doing what we love, we
get to thank this community and add new friends to
it.
</p>
</div>
</div>
<div class="row">
<div class="col text-center">
<a class="btn btn-primary" href="visit.html">
Book a tour
</a>
</div>
</div>
</div>
</section>
<!-- FOOTER -->
<footer class="sticky-footer">
<div class="container-fluid bg-custom">
<div class="row footer-container text-center text-md-left">
<div class="col-md-3 footer-info">
<h4>Contact</h4>
<ul class="fa-ul">
<li>
<span class="fa-li d-none d-md-inline">
<i class="fa fa-location-arrow"></i>
</span>
<i
class="fa fa-location-arrow d-md-none pr-2"
></i>
123 Beer St.
<br />
Oslo, Norway
</li>
<li>
<span class="fa-li d-none d-md-inline">
<i class="fa fa-phone"></i>
</span>
<i class="fa fa-phone d-md-none pr-2"></i>
<a
aria-label="phone number"
href="tel:555-123-4567"
>
555-123-4567
</a>
</li>
<li>
<span class="fa-li d-none d-md-inline">
<i class="fa fa-envelope"></i>
</span>
<i class="fa fa-envelope d-md-none pr-2"></i>
<a
aria-label="email"
href="mailto:[email protected]"
>
</a>
</li>
</ul>
<hr class="d-md-none" />
</div>
<div class="col-md-3 hours">
<h4>Opening Hours</h4>
<table class="table hours-footer">
<tbody>
<tr>
<td>Monday:</td>
<td>12:00 - 00:00</td>
</tr>
<tr>
<td>Tuesday:</td>
<td>12:00 - 00:00</td>
</tr>
<tr>
<td>Wednesday:</td>
<td>12:00 - 00:00</td>
</tr>
<tr>
<td>Thursday:</td>
<td>12:00 - 1:00</td>
</tr>
<tr>
<td>Friday:</td>
<td>12:00 - 2:00</td>
</tr>
<tr>
<td>Saturday:</td>
<td>12:00 - 2:00</td>
</tr>
<tr>
<td>Sunday:</td>
<td>closed</td>
</tr>
</tbody>
</table>
<hr class="d-md-none" />
</div>
<div class="col-md-3 footer-form">
<h4>Stay In Touch</h4>
<form class="form-group">
<input
type="email"
required
class="form-control"
placeholder="Email"
aria-label="Email address"
/>
<div class="text-right">
<button
type="submit"
class="btn btn-primary form-control"
aria-label="submit the form"
>
send
</button>
</div>
</form>
<hr class="d-md-none" />
</div>
<div class="col-md-3 social">
<h4>Connect</h4>
<ul class="list-inline">
<li class="list-inline-item align-middle">
<a
aria-label="Go to Facebook"
href="https://facebook.com"
target="_blank"
rel="noopener"
>
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li class="list-inline-item align-middle">
<a
aria-label="Go to Twitter"
href="https://twitter.com"
target="_blank"
rel="noopener"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="list-inline-item align-middle">
<a
aria-label="Go to Instagram"
href="https://instagram.com"
target="_blank"
rel="noopener"
>
<i class="fab fa-instagram"></i>
</a>
</li>
<li class="list-inline-item align-middle">
<a
aria-label="Go to Untappd"
href="https://untappd.com"
target="_blank"
rel="noopener"
>
<i class="fab fa-untappd"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- SCRIPTS -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
</body>
</html>