Add safeguarding page and some information.
authorSam White <webmaster@ycra.org.uk>
Wed, 8 Dec 2021 16:24:28 +0000 (16:24 +0000)
committerSam White <webmaster@ycra.org.uk>
Wed, 8 Dec 2021 16:24:28 +0000 (16:24 +0000)
public_html/includes/navbar.php
public_html/index.php
public_html/safeguarding.php [new file with mode: 0644]

index 5b6deb9885f75479317040bf482d803820bbbc1e..4d392f8b64371907804c24b954af74d3751daa28 100644 (file)
@@ -13,6 +13,14 @@ function get_menu_pages() {
                 'name' => 'Join',
                 'path' => 'join.php'
               ],
+    'safeguarding' => [
+                'name' => 'Safeguarding',
+                'path' => 'safeguarding.php'
+              ],
+    'founders' => [
+                'name' => 'Founding members',
+                'path' => 'founding-members.php'
+              ],
     'winter-event' => [
                 'name' => 'Winter Event',
                 'path' => 'winter-event.php'
@@ -20,10 +28,6 @@ function get_menu_pages() {
     'links' => [ 'name' => 'Useful Links',
                 'path' => '#'
                 ],*/
-    'founders' => [
-                'name' => 'Founding members',
-                'path' => 'founding-members.php'
-              ],
     'documents' => [
                 'name' => 'Documents',
                 'path' => 'documents.php'
index c527b741faa038ed052b83823a49132f14e9825d..6423c030cac1af45188db2325a2cb989bd634131 100644 (file)
@@ -30,9 +30,12 @@ function content() {?>
       the age of 30, with the aim to be an Association for young ringers, by young
       ringers.</p>
 
-      <p>For more information about us check out our article on
+      <p>Keep reading this page for more information about us and check out our article on
       <a href="https://bb.ringingworld.co.uk/issues/2021/820">page 2021/820</a> of
       <i><a href="https://ringingworld.co.uk/">The Ringing World</a></i>.</p>
+
+      <p>For information on how we handle safeguarding, please refer to our
+      <a <?php href('safeguarding.php');?>>safeguarding page</a>.
     </div>
   </div>
 
@@ -85,13 +88,6 @@ function content() {?>
     committee.</p>
   </div>
 
-  <!--div class="section">
-    <h2>Safeguarding</h2>
-    <p>We know how important safeguarding and so have a separate tab above
-    dedicated to this above. There you can find our safeguarding policy and code of
-    conduct.</p>
-  </div-->
-
   <div class="section" id="pricing">
     <h2>Pricing</h2>
       <p>We have set an annual subscription to the Association at £15. For this,
@@ -108,6 +104,13 @@ function content() {?>
       might pay the same for an hour of football training or a music lesson and is
       similar to other local guild subscriptions!</p>
   </div>
+
+  <!--div class="section">
+    <h2>Safeguarding</h2>
+    <p>We know how important safeguarding is, so have created a
+    <a <?php href('safeguarding.php');?>>dedicated page</a> describing how we handle
+    safeguarding.</p>
+  </div-->
   <?php
 }
 
diff --git a/public_html/safeguarding.php b/public_html/safeguarding.php
new file mode 100644 (file)
index 0000000..f449a2e
--- /dev/null
@@ -0,0 +1,26 @@
+<?php
+include_once('includes/html-templating.php');
+
+function page_title() {
+  return 'Safeguarding';
+}
+
+function content() {?>
+  <h1>Safeguarding</h1>
+
+  <p>We realise when working with young people and vulnerable adults
+  safeguarding is of prime importance, which is why is it at the forefront of our
+  minds. You can find our <a href="#">Safeguarding Policy</a> and
+  <a href="#">Code of Conduct</a> on our
+  <a <?php href('documents.php');?>>documents page</a>. These have been
+  independently reviewed by the Ann Craft Trust and have been approved
+  for use. A 101 guide to ringing etiquette can also be found in the YCRA
+  Guidebook given to all members.</p>
+
+  <p>For any safeguarding concerns, please contact
+  <a href="mailto:safeguarding@ycra.org.uk">safeguarding@ycra.org.uk</a>
+  or if there is an emergency, contact 999 immediately.</p><?php
+}
+
+include_once('includes/template.php');
+?>