Fix side padding of pages.
authorSam White <webmaster@ycra.org.uk>
Wed, 8 Dec 2021 16:09:43 +0000 (16:09 +0000)
committerSam White <webmaster@ycra.org.uk>
Wed, 8 Dec 2021 16:09:43 +0000 (16:09 +0000)
public_html/css/index.css
public_html/founding-members.php
public_html/includes/template.php
public_html/index.php

index 778de164d5679f90c82fc9f52d4f9b11ba48d17b..e69b8cc1e21e891941b1bb2964c21fd9737b5e9f 100644 (file)
@@ -23,6 +23,7 @@
   background-position: center bottom;
 }
 
+/* Method grids from https://ringingmethods.co.uk/ */
 #structure {
   background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                     url('../images/methods/double-norwich-major.png');
index a369e587ec807f8d8739613317de4ff0df4e07c7..56d716f404461374c3385dc8cd191eef89baeb6c 100644 (file)
@@ -28,58 +28,56 @@ function additional_stylesheets() {
 }
 
 function content() {?>
-  <div class="section" id="core-7">
-    <h1>Who are the founding members?</h1>
+  <h1>Who are the founding members?</h1>
 
-    <p>Here is a little bit of information about the people who founded the YCRA.</p>
+  <p>Here is a little bit of information about the people who founded the YCRA.</p>
 
-    <?php
-    $why_create = "I came to the realisation that there were ringers in my area I had
-      never heard of, and that this wasn't just a one off. I wanted to help
-      connect young ringers together so they can derive as much happiness from
-      ringing as I do! Plus, I want people to ring with when I'm old.";
-    founding_member_bio('Matthew Jerome', $why_create);
+  <?php
+  $why_create = "I came to the realisation that there were ringers in my area I had
+    never heard of, and that this wasn't just a one off. I wanted to help
+    connect young ringers together so they can derive as much happiness from
+    ringing as I do! Plus, I want people to ring with when I'm old.";
+  founding_member_bio('Matthew Jerome', $why_create);
 
-    $why_create = "I haven't had a lot of chance to participate in many youth ringing
-      activities in the county so I wanted to be a part of something that would
-      give me, and others, this opportunity.";
-    founding_member_bio('Elisha Small', $why_create);
+  $why_create = "I haven't had a lot of chance to participate in many youth ringing
+    activities in the county so I wanted to be a part of something that would
+    give me, and others, this opportunity.";
+  founding_member_bio('Elisha Small', $why_create);
 
-    $why_create = "I was excited about getting involved with YCRA and helping to secure
-      the future of ringing. Young people are the ringing leaders of the future!
-      I had been looking for ways to connect with other young ringers for a
-      while and the opportunity to get involved with YCRA was too good to miss!";
-    founding_member_bio('Elena Brake', $why_create);
+  $why_create = "I was excited about getting involved with YCRA and helping to secure
+    the future of ringing. Young people are the ringing leaders of the future!
+    I had been looking for ways to connect with other young ringers for a
+    while and the opportunity to get involved with YCRA was too good to miss!";
+  founding_member_bio('Elena Brake', $why_create);
 
-    $why_create = "The ringing community is unlike any other, and I believe that it's
-      crucial that we allow young ringers to connect and develop as human
-      beings. If anything, it's for the survival of our art. Young ringers are
-      our future tower captains, teachers, and committee members – the ringing
-      community need to give them the space and tools so that they can, one day,
-      fill those roles. I believe that the YCRA will do just that, with the
-      mentoring scheme being a good opportunity to ease young ringers into roles
-      of responsibility whilst, at the same time, providing a support network.";
-    founding_member_bio('Emily Hall', $why_create);
+  $why_create = "The ringing community is unlike any other, and I believe that it's
+    crucial that we allow young ringers to connect and develop as human
+    beings. If anything, it's for the survival of our art. Young ringers are
+    our future tower captains, teachers, and committee members – the ringing
+    community need to give them the space and tools so that they can, one day,
+    fill those roles. I believe that the YCRA will do just that, with the
+    mentoring scheme being a good opportunity to ease young ringers into roles
+    of responsibility whilst, at the same time, providing a support network.";
+  founding_member_bio('Emily Hall', $why_create);
 
-    $why_create = "As someone without a <q>ringing family</q>, I was
-      really lucky to find a group of friends who supported me in ringing and
-      helped me navigate ringing etiquette. I wanted to help create a group that
-      would create a safe space for other young ringers to find friends
-      like I did.";
-    founding_member_bio('Josephine Leggett', $why_create);
+  $why_create = "As someone without a <q>ringing family</q>, I was
+    really lucky to find a group of friends who supported me in ringing and
+    helped me navigate ringing etiquette. I wanted to help create a group that
+    would create a safe space for other young ringers to find friends
+    like I did.";
+  founding_member_bio('Josephine Leggett', $why_create);
 
-    $why_create = "It's a great way to get more kids involved in the larger
-      ringing community so that everyone has the opportunities that some of us
-      take for granted.";
-    founding_member_bio('Charlie Linford', $why_create);
+  $why_create = "It's a great way to get more kids involved in the larger
+    ringing community so that everyone has the opportunities that some of us
+    take for granted.";
+  founding_member_bio('Charlie Linford', $why_create);
 
-    $why_create = "To help other young ringers find a group of like-minded
-      people to help, support and encourage them while learning to ring.  I was
-      fortunate enough to have this while ringing at university (and when I went
-      to ring elsewhere over the summer) and it is definitely one of the main
-      reasons I enjoy ringing so much.";
-    founding_member_bio('Sam White', $why_create);?>
-  </div><?php
+  $why_create = "To help other young ringers find a group of like-minded
+    people to help, support and encourage them while learning to ring.  I was
+    fortunate enough to have this while ringing at university (and when I went
+    to ring elsewhere over the summer) and it is definitely one of the main
+    reasons I enjoy ringing so much.";
+  founding_member_bio('Sam White', $why_create);
 }
 
 include_once('includes/template.php');?>
index 52916cd3c3deddd71644eaea4a0bd88b189adb24..3e927f09314e5f76106ae5f368d92ec386add070 100644 (file)
@@ -31,7 +31,7 @@ if (function_exists('pre_html')) pre_html();
   </head>
   <body><?php
     navbar();?>
-    <div id="page-content"><?php
+    <div id="page-content" <?php if (empty($sections)) {?>class="section"<?php }?>><?php
       content();?>
     </div>
     <footer>
index 1455b4cf14f5c95c68df10a4225d74a65f1147b7..c527b741faa038ed052b83823a49132f14e9825d 100644 (file)
@@ -111,5 +111,7 @@ function content() {?>
   <?php
 }
 
+// Page has multiple, manually defined sections.
+$sections = true;
 require_once('includes/template.php');
 ?>