-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (91 loc) · 4.24 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
<!doctype html>
<html>
<head>
<link rel="icon" type="image/x-icon" href="./favicon.ico" />
<link rel="stylesheet" href="./assets/app.css">
<script type="text/javascript" src="./assets/app.js"></script>
<link href="https://fonts.googleapis.com/css?family=Arvo|Overpass" rel="stylesheet">
<title>25th Medway Scout Group, Chatham</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
</head>
<body>
<header>
<nav class="navigation">
<div class="navigation__header">
<button class="navigation__toggle" type="button" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navigation__brand" href="."></a>
</div>
<div class="navigation__collapse collapse" id="bs-example-navbar-collapse-1">
<ul class="navigation__links">
<li class="navigation__link-item"><a class="navigation__link" href=".">Home</a></li>
<li class="navigation__link-item"><a class="navigation__link" href="programme.html">Programme</a></li>
<li class="navigation__link-item navigation__link-item--after-brand"><a class="navigation__link" href="blog.html">Blog</a></li>
<li class="navigation__link-item"><a class="navigation__link" href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</nav>
</header>
<main class="container">
<div class="text">
<h1>Hello</h1>
<p>
We are the 25th Medway Scout Group, based on the Davis Estate in Chatham. Our group was founded in 1935, and since then
we have offered a variety of adventures to 6-25 year olds. Our mission is to ensure we help children and young
people reach their potential whilst engaging in exciting and unique experiences; we support them to develop a range
of skills such as teamwork, leadership, initiative, communication and commitment. We enjoy trying new things,
exploring our limits and most importantly, having fun. If that sounds like it might be for you or people you know,
please <a href="contact.html">get in touch</a>.
</p>
<p>
<img src="./assets/home--690.jpg" alt="A nice image" class="img-responsive"/>
</p>
<h2 class="sr-only">Section meetings</h2>
</div>
<div class="group-info">
<div class="group-info__wrapper">
<div class="group-info__section">
<h3>Beavers</h3>
<div class="group-info__times">Fri 6 – 7.30pm</div>
<div class="group-info__ages">6 – 8 yrs</div>
<p>A fun introduction to the world of scouting, a chance to make new friends and try new activities.</p>
</div>
<div class="group-info__section">
<h3>Cubs</h3>
<div class="group-info__times">Weds 6.30 – 8pm</div>
<div class="group-info__ages">8 – 10 yrs</div>
<p>With a big emphasis on having fun, cubs starts to introduce the foundations of scouting to young people.</p>
</div>
<div class="group-info__section">
<h3>Scouts</h3>
<div class="group-info__times">Fri 8 – 9.45pm</div>
<div class="group-info__ages">10 – 14 yrs</div>
<p>Scouts is all about mixing the traditional with the modern and taking the basic skills they learn to apply them in big and interesting ways.</p>
</div>
<div class="group-info__section">
<h3>Explorers</h3>
<div class="group-info__times">Thur 7.30 – 9.30pm</div>
<div class="group-info__ages">14 – 18 yrs</div>
<p>Our oldest age group are far more responsible for their own programme and activities, they're always up for a challenge!</p>
</div>
</div>
</div>
</main>
<footer class="text">
<small class="text--muted">Copyright © 2017 25th Medway scout group</small>
</footer>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-3687432-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>