generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
408 lines (396 loc) · 25.3 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
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content=" initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="assets/images/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/favicon-16x16.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/8dac59d043.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="assets/css/style.css" />
<title>KCC - 🌻Kilmacow Community Cleanup🌻</title>
</head>
<body>
<!-- Acknowledgement - Accessibility for screen readers, opening links in new tabs -
Scott Vinkle 13/04/2018 https://medium.com/@svinkle/why-let-someone-know-when-a-link-opens-a-new-window-8699d20ed3b1 -->
<div hidden>
<span id="new-window-message">Opens an external site in a new window</span>
</div>
<!-- Nav -->
<nav class="navbar navbar-expand-lg fixed-top navbar-custom fancy-border">
<a class="navbar-brand logo-image" href="index.html"><img src="assets/images/logolarge.svg"
alt="Kilmacow Community Cleanup Logo"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar" aria-controls="navbar"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-awesome fas fa-bars"></span>
<span class="navbar-toggler-awesome fas fa-times"></span>
</button>
<div class="collapse navbar-collapse" id="navbar">
<ul class="navbar-nav ml-auto">
<!-- Acknowledgement - The navbar was not collapsing once a link was clicked - solution to add data-toggle
and data-target found here - Orel Eliyahu 04/04/2016 https://stackoverflow.com/questions/36405991/bootstrap-toggle-menu-on-one-page-site-does-not-uncollapse-when-clicked -->
<li id="aboutLink" data-toggle="collapse" data-target=".navbar-collapse">
<a class="nav-link page-scroll" href="#about">About</a>
</li>
<li id="eventsLink" data-toggle="collapse" data-target=".navbar-collapse">
<a class="nav-link page-scroll" href="#events">Events</a>
</li>
<li id="galleryLink" data-toggle="collapse" data-target=".navbar-collapse">
<a class="nav-link page-scroll" href="#gallery">Gallery</a>
</li>
<li id="contactLink" data-toggle="collapse" data-target=".navbar-collapse">
<a class="nav-link page-scroll" href="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
<!-- Header / Home -->
<header id="header" class="header">
<div class="header-content">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="text-container">
<p>Welcome to the</p>
<h1>Kilmacow Community Cleanup Group</h1>
<p class="pb-4">We are a community based clean up group based in Kilmacow, South Kilkenny
</p>
<div class="btn-toolbar">
<a href="#about" class="btn btn-outline-primary pull-center white">About Us <i
class="fas fa-angle-right fa-sm"></i></a>
<a href="#contact" class="btn btn-outline-primary">Contact Us <i
class="fas fa-angle-right fa-sm"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Intro / About Us Section -->
<div id="about" class="custom-section">
<section class="container">
<div class="row">
<div class="col-sm-6">
<div class="text-container">
<h2 class="display-4">About</h2>
<hr class="fancy-border" />
<p>The Kilmacow Community Clean up group began in 2009 as a response to the litter being dumped
along the roadside of the village and surrounding areas. It started with two community
members gathering litter on their daily walk. Over the years the group grew in members and
eventually evolved into an annual clean up event open to all members of community. Today,
the KCC organises multiple events and activities throughout the year including, the annual
spring clean, flower planting days, painting days, river cleaning days and mini projects.
</p>
<p>
The KCC has no formal committee or membership, we consider everyone who participates in
anyway as equals. The KCC prides itself on its goals of inclusion and participation for as
many community members from as many diverse backgrounds as possible. All events we organise
are open to all members of the community, and we welcome new participants at all events.
</p>
<p>
The efforts of the Kilmacow Community Clean up group has helped the village gain recognition
and awards for the community including, overall winners of “category seven – Community
Wellbeing” in the IPB Pride of Place awards 2019. Details of the award are available <a
href=" https://prideofplace.ie/portfolio-item/category-seven-community-wellbeing/"
target="_blank" rel="noopener" aria-describedby="new-window-message"
aria-label="opens in new tab">here <i class="fas fa-external-link-alt"></i></a>
</p>
</div>
</div>
<div class="col-sm-6 d-flex align-items-center justify-content-center">
<div class="image-container shadow">
<img class="img-fluid rounded mx-auto d-block" src="assets/images/intro.jpg" alt="alternative">
</div>
</div>
</div>
</section>
</div>
<!-- EVENTS Section -->
<div id="events" class="custom-section">
<section class="container">
<div class="row">
<div class="col-sm-6">
<div class="text-container">
<h2 class="display-4">Events</h2>
<hr class="fancy-border" />
<p>Throughout the year the Kilmacow Community Clean-up group organises various activities and
events. These range from painting, bulb and flower planting, mini projects and litter
picking.
The aim of these events is to bring together members of the community from all walks of
life, to
promote inclusion and community spirit, all the while improving the aesthetic and
cleanliness of
the community. We encourage and invite people of all ages to attend.
</p>
<p>Each year in April, we participate in <a class="pLink"
href="https://nationalspringclean.org/" target="_blank" rel="noopener"
aria-describedby="new-window-message">The National Spring Clean <i
class="fas fa-external-link-alt"></i></a>, a
national clean up event in association with
<a class="pLink" href="https://www.antaisce.org/" target="_blank" rel="noopener"
aria-describedby="new-window-message">An Taisce <i
class="fas fa-external-link-alt"></i></a>.The National
Spring Clean is an annual event where communities come together for one day in April and
organise a community clean-up day. Understanding that people have busy schedules and are
sometimes unable to attend, An Taisce launched the #2minutestreetclean campaign, where they
encourage people to
spend a couple of minutes cleaning around their residence or locality and posting an image
on social
media with the hashtag <a class="pLink"
href="https://nationalspringclean.org/2minutestreetclean/" target="_blank"
rel="noopener" aria-describedby="new-window-message">#2minutestreetclean <i
class="fas fa-external-link-alt"></i></a>
</p>
<p>If you would like to be updated on any of the events or activities organised by the KCC then
please<a href="https://www.facebook.com/" target="_blank" rel="noopener"
aria-describedby="new-window-message"> like us on <span class="facebook">Facebook
</span><i class="fas fa-external-link-alt"></i></a>,<a href="https://www.instagram.com/"
target="_blank" rel="noopener" aria-describedby="new-window-message"> add us on <span
class="instagram">Instagram</span> <i class="fas fa-external-link-alt"></i></a>,<a
href="https://twitter.com/" target="_blank" rel="noopener"
aria-describedby="new-window-message"> follow us on <span class="twitter">Twitter
</span><i class="fas fa-external-link-alt"></i></a>,<a href="#contact"> or subscribe to
our <span class="subscribe">newsletter</span></a>.
</p>
</div>
</div>
<!-- Acknowledgement - The layout of the 'event cards' was inspired by mouse0270,
however the code was not responsive so I replicated similar cards using bootstrap and custom code.
Mouse0270's cards can be found here: https://bootsnipp.com/snippets/kMRrW -->
<div class="col-sm-6" id="cardList">
<div class="event covid19 shadow">
<div class="event-item ">
<i class="fas fa-virus mx-2"></i>
</div>
<div class="event-item">
<div>In the interest of safety, we have had to make the difficult decision to suspend all
upcoming events for the time being amid the seriousness of the COVID-19 pandemic.
</div>
</div>
</div>
<div class="event shadow">
<div class="event-item blue-bg">
<time datetime="2020-09-27">
<span class="day">27</span>
<span class="month">Sep</span>
</time>
</div>
<div class="event-item">
<h3>Daffodil Planting Day</h3>
<div><span><i class="fas fa-map-marker-alt fa-fw"></i>Church Gates</span>
</div>
<div><span><i class="far fa-clock fa-fw"></i>01:00pm</span>
</div>
<div><span><i class="fas fa-info fa-fw"></i>All Welcome</span>
</div>
<div class="cursor-pointer blue-txt" data-toggle="collapse" data-target="#cardOne"
aria-expanded="true" aria-controls="cardOne" role="button"><span class="footnote">Click
for more
info</span><i class="fas fa-angle-double-down mx-2"></i></div>
</div>
<div id="cardOne" class="collapse" aria-labelledby="cardOne" data-parent="#cardList">
<div class="card-body">
This year we will focus our planting on the recently recovered ground on the footpath
beside the church. We have purchased six varieties of daffodils that flower at different
stages throughout spring and summer to provide as much colour and coverage as possible.
If you have shovels, spades, gloves, bulb planters, vis vests then please bring them on
the day as only a limited quantity will be available.
</div>
</div>
</div>
<div class="event shadow">
<div class="event-item pink-bg">
<time datetime="2020-04-28">
<span class="day">28</span>
<span class="month">Apr</span>
</time>
</div>
<div class="event-item">
<h3>Village Spring Clean</h3>
<div><span><i class="fas fa-map-marker-alt fa-fw"></i>Church Gates</span>
</div>
<div><span><i class="far fa-clock fa-fw"></i>12:00pm</span>
</div>
<div><span><i class="fas fa-info fa-fw"></i>All Welcome</span>
</div>
<div class="cursor-pointer pink-txt" data-toggle="collapse" data-target="#cardTwo"
aria-expanded="true" aria-controls="cardTwo" role="button"><span class="footnote">Click
for more
info</span><i class="fas fa-angle-double-down mx-2"></i></div>
</div>
<div id="cardTwo" class="collapse" aria-labelledby="cardTwo" data-parent="#cardList">
<div class="card-body">
This year the village spring clean will focus on the areas around the upper village and the roads and pathways leading into the upper Village. If you have gloves, bags, vis vests or litter pickers we kindly ask that you please bring them along on the day, as only a limited quantity will be available.
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- Gallery Section -->
<!-- Acknowledgement - the structure of the carousel has been adapted from code found in the bootstrap documentation
available here: https://getbootstrap.com/docs/4.0/components/carousel/#with-indicators -->
<!-- Acknowledgement - Followed Jim Morel Gallery layout: https://github.com/JimLynx/CI-MS1-Explore-Ireland -->
<div id="gallery" class="custom-section">
<section class="container">
<div class="row">
<div class="col-sm-6">
<div class="text-container">
<h2 class="display-4">Gallery</h2>
<hr class="fancy-border" />
<p>Photos of recent events</p>
</div>
</div>
<!-- Mobile & Tablet Gallery -->
<div class="static-gallery container d-lg-none">
<img src="assets/images/gallery/1.jpg" class="img-fluid d-block w-100"
alt="Volunteers getting materials" />
<img src="assets/images/gallery/2.jpg" class="img-fluid d-block w-100"
alt="Volunteer Group Photo" />
<img src="assets/images/gallery/3.jpg" class="img-fluid d-block w-100"
alt="Various volunteer photos" />
<img src="assets/images/gallery/4.jpg" class="img-fluid d-block w-100"
alt="Large group of volunteers" />
<img src="assets/images/gallery/5.jpg" class="img-fluid d-block w-100"
alt="Volunteers group photo" />
<img src="assets/images/gallery/6.jpg" class="img-fluid d-block w-100"
alt="Volunteers work on derilict building" />
<img src="assets/images/gallery/7.jpg" class="img-fluid d-block w-100"
alt="Volunteers putting on visibility vests" />
</div>
<!-- Desktop Gallery with Carousel -->
<div class="container mt-3">
<div id="image-slide" class="carousel slide d-none d-lg-block" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#image-slide" data-slide-to="0" class="active"></li>
<li data-target="#image-slide" data-slide-to="1"></li>
<li data-target="#image-slide" data-slide-to="2"></li>
<li data-target="#image-slide" data-slide-to="3"></li>
<li data-target="#image-slide" data-slide-to="4"></li>
<li data-target="#image-slide" data-slide-to="5"></li>
<li data-target="#image-slide" data-slide-to="6"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="assets/images/gallery/1.jpg" class="d-block w-75 mx-auto shadow"
alt="Volunteers getting materials" />
</div>
<div class="carousel-item">
<img src="assets/images/gallery/2.jpg" class="d-block w-75 mx-auto shadow"
alt="Volunteer Group Photo" />
</div>
<div class="carousel-item">
<img src="assets/images/gallery/3.jpg" class="d-block w-75 mx-auto shadow"
alt="Various volunteer photos" />
</div>
<div class="carousel-item">
<img src="assets/images/gallery/4.jpg" class="d-block w-75 mx-auto shadow"
alt="Large group of volunteers" />
</div>
<div class="carousel-item">
<img src="assets/images/gallery/5.jpg" class="d-block w-75 mx-auto shadow"
alt="Volunteers group photo" />
</div>
<div class="carousel-item">
<img src="assets/images/gallery/6.jpg" class="d-block w-75 mx-auto shadow"
alt="Volunteers work on derilict building" />
</div>
<div class="carousel-item">
<img src="assets/images/gallery/7.jpg" class="d-block w-75 mx-auto shadow"
alt="Volunteers putting on visibility vests" />
</div>
</div>
<!-- Acknowledgement: change carousel indicators to use fontawesome icons - Unison Tek 12/06/18 stackoverflow https://stackoverflow.com/questions/46249541/change-arrow-colors-in-bootstraps-carousel -->
<a class="carousel-control-prev" href="#image-slide" role="button" data-slide="prev">
<span><i class="fa fa-angle-left carousel-arrows" aria-hidden="true"></i></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#image-slide" role="button" data-slide="next">
<span><i class="fa fa-angle-right carousel-arrows" aria-hidden="true"></i></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</section>
</div>
<!-- Contact Section -->
<div id="contact" class="custom-section">
<div class="container">
<div class="row">
<div class="col-sm-6">
<div class="text-container">
<h2 class="display-4">Contact</h2>
<hr class="fancy-border" />
<a class="navbar-brand logo-image mb-4" href="index.html"><img src="assets/images/logolarge.svg"
alt="Kilmacow Community Cleanup Logo"></a>
<p>Feel free to get in touch using any of the methods below, or please fill out the contact form
and someone will be in touch</p>
<ul class="contact-list">
<li><i class="fas fa-map-marker-alt purple-txt"></i>Upper Kilmacow, Co. Kilkenny</li>
<li><i class="fas fa-phone purple-txt"></i><a href="tel:00000000">+353 12 345 6789</a></li>
<li><i class="fas fa-envelope purple-txt"></i><a
href="mailto:contact@kcc.ie">contact@kcc.ie</a></li>
</ul>
<span class="fa-stack">
<a href="https://www.facebook.com" target="_blank" rel="noopener"
aria-describedby="new-window-message" aria-label="Facebook">
<i class="fab fa-facebook-f fa-stack-1x facebook"></i>
</a>
</span>
<span class="fa-stack">
<a href="https://www.twitter.com" target="_blank" rel="noopener"
aria-describedby="new-window-message" aria-label="Twitter">
<i class="fab fa-twitter fa-stack-1x twitter"></i>
</a>
</span>
<span class="fa-stack">
<a href="https://www.instagram.com" target="_blank" rel="noopener"
aria-describedby="new-window-message" aria-label="Instagram">
<i class="fab fa-instagram fa-stack-1x instagram"></i>
</a>
</span>
</div>
</div>
<div class="col-sm-6">
<form class="shadow p-5">
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control" id="name" required>
</div>
<div class="form-group">
<label class="label-control" for="email">Email</label>
<input type="email" class="form-control" id="email" required>
</div>
<div class="form-group">
<label class="label-control" for="message">Your message</label>
<textarea class="form-control" id="message"></textarea>
</div>
<div class="form-group">
<input type="radio" id="newsletter" value="newsletter">
<label class="label-control" for="newsletter">Subscribe to newsletter</label>
</div>
<div class="form-group">
<button type="submit" class="btn btn-outline-primary">Submit</button>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="fancy-border d-flex align-items-center justify-content-center pt-2">
<p><i class="far fa-copyright"></i> KCC 2020</p>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx"
crossorigin="anonymous"></script>
</body>
</html>