diff --git a/.github/workflows/hugo.yml b/.github/workflows/hugo.yml deleted file mode 100644 index f443d78..0000000 --- a/.github/workflows/hugo.yml +++ /dev/null @@ -1,78 +0,0 @@ -# Sample workflow for building and deploying a Hugo site to GitHub Pages -name: Deploy Hugo site to Pages - -on: - # Runs on pushes targeting the default branch - push: - branches: ["master"] - schedule: - - cron: "0 22 * * *" - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages -permissions: - contents: read - pages: write - id-token: write - -# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. -# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. -concurrency: - group: "pages" - cancel-in-progress: false - -# Default to bash -defaults: - run: - shell: bash - -jobs: - # Build job - build: - runs-on: ubuntu-latest - env: - HUGO_VERSION: 0.111.3 - steps: - - name: Install Hugo CLI - run: | - wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \ - && sudo dpkg -i ${{ runner.temp }}/hugo.deb - - name: Install Dart Sass Embedded - run: sudo snap install dart-sass-embedded - - name: Checkout - uses: actions/checkout@v3 - with: - submodules: recursive - - name: Setup Pages - id: pages - uses: actions/configure-pages@v3 - - name: Install Node.js dependencies - run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true" - - name: Build with Hugo - env: - # For maximum backward compatibility with Hugo modules - HUGO_ENVIRONMENT: production - HUGO_ENV: production - run: | - hugo \ - --gc \ - --minify \ - --baseURL "${{ steps.pages.outputs.base_url }}/" - - name: Upload artifact - uses: actions/upload-pages-artifact@v1 - with: - path: ./public - - # Deployment job - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - needs: build - steps: - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v2 diff --git a/.gitignore b/.gitignore index cb6eb2c..efac444 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ /resources/ +/public +.idea \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..7abb13d --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,7 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# GitHub Copilot persisted chat sessions +/copilot/chatSessions diff --git a/.idea/RamblingHikingWebsite.iml b/.idea/RamblingHikingWebsite.iml new file mode 100644 index 0000000..018edfb --- /dev/null +++ b/.idea/RamblingHikingWebsite.iml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/jsLibraryMappings.xml b/.idea/jsLibraryMappings.xml new file mode 100644 index 0000000..089dadd --- /dev/null +++ b/.idea/jsLibraryMappings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..e6b5093 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/README.md b/README.md index e1147ef..fb6fad9 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,22 @@ # Rambling & Hiking Website -![Github Actions](https://img.shields.io/github/actions/workflow/status/dan-lee76/ramsoc/hugo.yml?branch=master&style=for-the-badge) ![GitHub pull requests](https://img.shields.io/github/issues-pr/dan-lee76/ramsoc?style=for-the-badge) ![Github Issues](https://img.shields.io/github/issues/dan-lee76/ramsoc?style=for-the-badge) ![GitHub forks](https://img.shields.io/github/forks/dan-lee76/ramsoc?style=for-the-badge) +![Github Actions](https://img.shields.io/github/actions/workflow/status/UoN-Rambling-Hiking/RamblingHikingWebsite/hugo.yml?branch=master&style=for-the-badge) ![GitHub pull requests](https://img.shields.io/github/issues-pr/UoN-Rambling-Hiking/RamblingHikingWebsite?style=for-the-badge) ![Github Issues](https://img.shields.io/github/issues/UoN-Rambling-Hiking/RamblingHikingWebsite?style=for-the-badge) -This is the main upstream source for [Official Rambling and Hiking Site](https://github.com/UoN-Rambling-Hiking/RamblingHikingWebsite) +The current website for the University of Nottingham Rambling and Hiking Club. + +This is a downstream from the [original source](https://github.com/dan-lee76/ramsoc). ## How it's made The website core dependencies are: * [Hugo](https://gohugo.io) - * [Github Pages](https://pages.github.com) + * [Cloudflare Pages](https://pages.cloudflare.com/) + +## Deployment +Cloudflare Pages automatically redeploy the website at 22:00 Wednesday-Saturday and 19:00 on Sundays. ## Contributing Contributions are welcome for both updating our Calendar and improving the website. ## Run locally -1. Clone the repository `git clone https://github.com/dan-lee76/ramsoc.git` +1. Clone the repository `git clone https://github.com/UoN-Rambling-Hiking/RamblingHikingWebsite.git` 2. Install hugo [this guide may help](https://gohugo.io/getting-started/quick-start/#step-1-install-hugo) 3. Start development server `hugo server -F --disableFastRender` because there are some annoying things that can happen during dev if run with just `hugo server` diff --git a/content/about-us/DSC01895.jpg b/content/about-us/DSC01895.jpg new file mode 100644 index 0000000..9d2d7df Binary files /dev/null and b/content/about-us/DSC01895.jpg differ diff --git a/content/about-us/index.md b/content/about-us/index.md index a901866..40d804c 100644 --- a/content/about-us/index.md +++ b/content/about-us/index.md @@ -7,12 +7,16 @@ menu: title: Who we are --- -Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Pellentesque habitant morbi tristique senectus et netus et. Semper viverra nam libero justo laoreet. Feugiat vivamus at augue eget arcu dictum varius duis at. In vitae turpis massa sed. Sit amet volutpat consequat mauris nunc congue nisi. Egestas quis ipsum suspendisse ultrices. Nulla at volutpat diam ut venenatis tellus. Congue mauris rhoncus aenean vel elit scelerisque. Quam quisque id diam vel quam elementum pulvinar etiam non. Adipiscing at in tellus integer feugiat scelerisque varius morbi enim. Commodo elit at imperdiet dui. Ultrices sagittis orci a scelerisque purus semper eget duis at. +**We explore natures playground** -Facilisis mauris sit amet massa vitae tortor. Nibh tortor id aliquet lectus. Lorem donec massa sapien faucibus et molestie ac feugiat sed. Pulvinar mattis nunc sed blandit libero volutpat. Quam quisque id diam vel quam. Ut faucibus pulvinar elementum integer enim neque. Consectetur purus ut faucibus pulvinar elementum integer enim. Arcu felis bibendum ut tristique et egestas quis ipsum suspendisse. Placerat vestibulum lectus mauris ultrices eros in cursus. Aliquam malesuada bibendum arcu vitae elementum curabitur vitae nunc. Cras tincidunt lobortis feugiat vivamus at augue eget. Ut lectus arcu bibendum at varius. Interdum posuere lorem ipsum dolor sit. Ullamcorper morbi tincidunt ornare massa. +Welcome to RAMSOC, the University of Nottingham Rambling and Hiking Club - where adventure knows no bounds! As one of the university's largest, friendliest, and most active clubs, we're geared up to offer you an extraordinary experience each week. We are also one of the oldest continuous clubs at UoN, and will be celebrating 90 years in the 2023/2024 academic year! -Quam id leo in vitae. Auctor urna nunc id cursus metus aliquam eleifend. Quam lacus suspendisse faucibus interdum posuere. Non consectetur a erat nam at lectus. Nulla porttitor massa id neque aliquam vestibulum morbi blandit. Interdum velit euismod in pellentesque massa placerat duis. Magna fringilla urna porttitor rhoncus. Erat nam at lectus urna duis convallis. Urna porttitor rhoncus dolor purus non enim praesent. Diam donec adipiscing tristique risus nec feugiat in. Varius duis at consectetur lorem donec massa sapien. Ultrices in iaculis nunc sed augue. Nunc mi ipsum faucibus vitae. Lectus proin nibh nisl condimentum id. Turpis egestas pretium aenean pharetra magna ac placerat vestibulum. Blandit massa enim nec dui nunc mattis enim. +Every Sunday, we embark on an exhilarating journey to different corners of the stunning Peak District. Picture yourself surrounded by breathtaking landscapes as we delve into the heart of nature. But that's not all! We also take our passion for exploration to the next level with six unforgettable weekends away each year. From the majestic Lake District to the rugged beauty of Snowdonia and the charming Yorkshire Dales, our adventures know no boundaries! -Elementum sagittis vitae et leo duis ut diam quam. Vulputate sapien nec sagittis aliquam malesuada bibendum arcu. Vulputate odio ut enim blandit volutpat maecenas. Et malesuada fames ac turpis egestas. Arcu bibendum at varius vel pharetra vel. Eget felis eget nunc lobortis. Mi tempus imperdiet nulla malesuada pellentesque elit eget gravida. Scelerisque in dictum non consectetur a erat nam. Lacus luctus accumsan tortor posuere ac ut consequat. Tortor posuere ac ut consequat semper viverra. Feugiat in ante metus dictum at tempor. Vitae turpis massa sed elementum tempus egestas. Elit pellentesque habitant morbi tristique senectus. Enim nunc faucibus a pellentesque sit amet. At consectetur lorem donec massa sapien faucibus et molestie ac. Ullamcorper velit sed ullamcorper morbi tincidunt. Faucibus purus in massa tempor nec feugiat nisl pretium fusce. Aenean sed adipiscing diam donec. Sagittis aliquam malesuada bibendum arcu vitae elementum curabitur. Nibh praesent tristique magna sit. +Get ready for a range of thrilling walks thoughtfully curated for everyone's enjoyment. Whether you're seeking a leisurely countryside stroll or craving the adrenaline rush of a challenging mountain hike, our competent leaders will guide you every step of the way. Worried about the essentials? Fear not! Each walk comes fully equipped with maps, compasses, and a first aid kit - ensuring your safety while you soak in the wonders of nature. -Vulputate dignissim suspendisse in est ante in nibh. Platea dictumst quisque sagittis purus sit. Cras pulvinar mattis nunc sed blandit libero volutpat sed. Commodo ullamcorper a lacus vestibulum sed arcu non odio euismod. Nunc sed augue lacus viverra. Vel pretium lectus quam id leo in vitae turpis. Nunc mi ipsum faucibus vitae aliquet nec ullamcorper. Tempus egestas sed sed risus pretium quam vulputate. Consectetur lorem donec massa sapien faucibus et molestie ac feugiat. Sem integer vitae justo eget magna fermentum iaculis. Egestas fringilla phasellus faucibus scelerisque eleifend donec pretium. At urna condimentum mattis pellentesque id nibh tortor. Velit ut tortor pretium viverra suspendisse potenti nullam ac. Massa tincidunt dui ut ornare lectus sit amet est placerat. Commodo ullamcorper a lacus vestibulum. Arcu odio ut sem nulla pharetra. Amet tellus cras adipiscing enim eu turpis egestas pretium. Sapien faucibus et molestie ac feugiat sed lectus. Suscipit adipiscing bibendum est ultricies. \ No newline at end of file +Escape the pressures of university life and immerse yourself in the great outdoors with RAMSOC. Our calendar is brimming with exciting events and socials, promising an unforgettable journey through the year. And guess what? You don't need any specialist equipment or prior experience, just a pair of trusty [walking boots](/gear/)! Whether you're a seasoned hiker or a first-timer, RAMSOC welcomes everyone with open arms. + +So, if you're seeking unforgettable adventures, lasting friendships (possibly relationships), and a chance to explore the world around you, look no further. Click the button to the right and join RAMSOC on an extraordinary journey of discovery, growth, and the thrill of the great outdoors! + +![group of people in hiking gear](DSC01895.jpg) \ No newline at end of file diff --git a/content/anniversary/_index.md b/content/anniversary/_index.md new file mode 100644 index 0000000..d92c382 --- /dev/null +++ b/content/anniversary/_index.md @@ -0,0 +1,6 @@ +--- +menu: + main: + name: Anniversary +title: Anniversary +--- \ No newline at end of file diff --git a/content/anniversary/saturday.md b/content/anniversary/saturday.md new file mode 100644 index 0000000..d6cd38c --- /dev/null +++ b/content/anniversary/saturday.md @@ -0,0 +1,10 @@ +--- +title: "Saturday 4th May: Evening Meal" +--- + +- **Location**: [Cosy Club Nottingham](https://cosyclub.co.uk/location/nottingham/) +- **Time**: 19:00 +- **Cost**: £35.50 +- **Dress Code**: Smart Casual +- **Menu**: Three course meal with arrival drink + diff --git a/content/anniversary/signup.md b/content/anniversary/signup.md new file mode 100644 index 0000000..9911486 --- /dev/null +++ b/content/anniversary/signup.md @@ -0,0 +1,5 @@ +--- +title: "Sign Up" +layout: signup +type: anniversary +--- \ No newline at end of file diff --git a/content/anniversary/sunday.md b/content/anniversary/sunday.md new file mode 100644 index 0000000..86ce12e --- /dev/null +++ b/content/anniversary/sunday.md @@ -0,0 +1,11 @@ +--- +title: "Sunday 5th May: Edale Hike" +--- + +- **Location**: Edale Car Park +- **Time**: 09:00 +- **Cost**: £5 - For transport +- **Dress Code**: Hiking + +We aim to set of walking at 10:30, so if you're making your own way there, please arrive before then. + diff --git a/content/benefits/image-1.png b/content/benefits/image-1.png new file mode 100644 index 0000000..47d0605 Binary files /dev/null and b/content/benefits/image-1.png differ diff --git a/content/benefits/image-2.png b/content/benefits/image-2.png new file mode 100644 index 0000000..45a29d2 Binary files /dev/null and b/content/benefits/image-2.png differ diff --git a/content/benefits/image-3.png b/content/benefits/image-3.png new file mode 100644 index 0000000..c0c3953 Binary files /dev/null and b/content/benefits/image-3.png differ diff --git a/content/benefits/index.md b/content/benefits/index.md new file mode 100644 index 0000000..1ebe9c9 --- /dev/null +++ b/content/benefits/index.md @@ -0,0 +1,87 @@ +--- +title: Leader Benefits +--- + +As part of volunteering your time with the club, you're able to be rewarded for your time through the [University of Nottingham Sport Leadership Academy](https://uonsportleaders.com). + +*Quick Links* +- [Hour Trade](#hour-trade) +- [Hour Conversion](#hour-conversion) +- [Site Usage](#site-usage) + - [Site Registration](#site-registration) + - [Joining the opportunity](#joining-the-opportunity) + - [The dashboard](#the-dashboard) + - [Claiming Hours](#claiming-hours) + - [Claiming Swag](#claiming-swag) + +## Hour Trade + +- 15 Hours: UoN Sport Water Bottle +- 15 Hours: UoN Coffee Mug +- 20 Hours: Leadership Academy Sports Leader black long sleeved t-shirt +- 40 Hours: Leadership Academy Sports Leader grey jumper +- 45 Hours: UoN Black Joggers +- 50 Hours: Leadership Academy Sports Leader green hoodie +- 65 Hours: Sports Massage Voucher + +## Hour Conversion + +{{< table id="hours" class="table table-striped table-hover" data-sample=10 >}} +| Activity | Hours Claim | Notes | +|--------------|-------------|--------------------------------------| +| G2 Leading | 6 | 5.5 hours walking with .5 hours prep | +| G2 Assessing | 6.5 | 5.5 hours walking with 1 hour prep | +| G2 Assessed | 6.25 | 5.5 hours walking with .75 hour prep | +| G3 Leading | 7.45 | 7 hours walking with .45 hour prep | +| G3 Assessing | 8 | 7 hours walking with 1 hour prep | +| G3 Assessed | 8.5 | 7 hours walking, 1.5 hour prep | +| FA G2 | 5.5 | 5.5 hours walking | +| FA G3 | 7 | 7 hours walking | +| Driver | | Complete journey (including breaks) | +| G2 Training | 14 | 10 hours practical, 4 hours theory | +| G3 Training | tbc | tbc | + +{{< /table >}} + +*These are to be used only as a guide. If you do more, claim more! If you do less, you still sacrificed your time, so claim the suggested amount. If you did not volunteer/lead, you are unable to claim hours.* + +## Site Usage + +It is recommended you use a computer to access the site. + +### Site Registration + +- Registration can be completed by going to [uonsportleaders.com/index?newRegistration=true](https://uonsportleaders.com/index?newRegistration=true). Follow the instructions to create a new account, using your university email and information. This is important so staff can verify you're a student. Once account is verified, log into the account. You will be a volunteer + +### Joining the opportunity + +Whilst logged in, join either: + +- **2023/2024 Walk Leader, First Aid, and Minibus driver** - [Leadership Academy Qualification Fund 23/24](https://uonsportleaders.com/volunteers/opportunity/10201929) +- **Before 2023 Walk Leader, First Aid, and Minibus driver** - [Rambling & Hiking Club Walk Leader 23-24](https://uonsportleaders.com/volunteers/opportunity/10212225) + +It is important you join the correct opportunity, otherwise the club will be charged for any training conducted. + +### The dashboard + +![sports leader dashboard](image-1.png) + +The above photo displays the dashboard. This can be accessed by pressing the 🏠(house) button any time. + +### Claiming Hours + +On your inital claim, you will have to rate the opportunity. Please leave positive feedback! + +1. Go to the `Opportunities` section on the [dashboard](#the-dashboard). Then click `MANAGE` for your desired opportunity. + ![image displaying list of opportunities](image-2.png) +2. Go to `Log Hours` and enter the amount of hours you have completed on said date. Then click `LOG HOURS`. Bare in mind, once clicking the `LOG HOURS` button, the `Hours Logged` counter will increase. It is common to not think the action has been successful, so only press the button once. ![image displaying the claiming page](image-3.png) +3. Once hours are logged you are done. Hours get confirmed every month or so. + +### Claiming Swag + +1. Go to the `HourTrade` section. +2. Select what swag you would like. Our opportunities are classed as `Internal hours`. [Easy View](#hour-conversion) +3. Once claimed, your hours available for trade will decrease and UoN Sport will be in contact with you. + + +Any issues or queries, please dont hesitate to get in touch with us! \ No newline at end of file diff --git a/content/constitution/index.md b/content/constitution/index.md new file mode 100644 index 0000000..0e62e14 --- /dev/null +++ b/content/constitution/index.md @@ -0,0 +1,77 @@ +--- +menu: + main: + parent: About + name: Constitution + weight: 3 +title: Constitution +--- + +*Last Updated: 05/02/25* + +UNIVERSITY OF NOTTINGHAM SPORT RAMBLING AND HIKING CLUB + +1. Name + 1. The name of the Club shall be University of Nottingham Rambling and Hiking Club, hereafter referred to as the Club. + + +2. Aim and Objectives + 1. The aims of the Club shall be to develop the holistic model of sport at the University of Nottingham through: + 1. The Club aims for increasing development through extensive participation. The Club will act non-competitively and will seek to attract a diverse range of participants within the university community and encourage physical activity in the outdoors. + 2. Primarily organising and running walking trips to destinations around the United Kingdom, with the aim of encouraging interest in rambling and hiking, seeking to benefit members with practical training opportunities, and increase interest and awareness in the outdoors and natural environment. + + +3. Membership + 1. All members are required to pay a financial contribution to the club; to be confirmed annually by club committee. + 2. Any member that the committee determine to be contravening the aims of the club is subject to removal or suspension under the guidance of the Sports Officer or relevant representative. + 3. Full Membership may be granted to current students at the University of Nottingham who are members of the University of Nottingham Students’ Union + 4. Associate Membership may be granted to associate members of the University of Nottingham Students’ Union, subject to the approval by the Club’s committee. + 5. All members registered to the Club are subject to the independent rules and regulations of UoN Sport and their respective sport’s competitions. + 6. Only full members are entitled to vote at Annual General Meetings (AGM) or Extraordinary General Meetings (EGM) on all questions of policy or election. + 7. All full members are subject to the UoN Students Union Bye Laws and Students Union and UoN Policy. + + +4. Committee + 1. The Club committee shall be responsible for the effective running of the club in line with UoN Sport. + 2. The committee shall consist of three core committee members, and any additional committee members required. + 3. The Core committee members shall be titled President, Secretary and Treasurer. + 1. President shall have overall responsibility for the Club and chair all meetings. + 2. Secretary shall be responsible for general administration of the Club and meeting coordination including minute taking. The secretary should ensure minutes are available to the membership in a timely manner. + 3. Treasurer shall be responsible for the financial sustainability of the Club. + + + 4. The Additional Committee Members shall be determined by the sport club in association to their competition and administrative needs: + 1. Vice President shall be responsible for assisting committee members where desired. In addition, they will be directly responsible for helping the President run and organise the committee. + 2. Rambling Secretary shall be responsible for the planning of hiking activities of the Club. + 3. Social Secretary shall be responsible for the planning and running of the Club’s social activities. + 4. Safety Officer shall be responsible for compliance with the University of Nottingham Students’ Union health and safety guidelines and to organise the training and listing of walk leaders and first aiders. + 5. Publicity Officer shall be responsible for the Club’s public relations seeking to increase engagement and interest and to be responsible for the Club’s website and social media platforms. + 6. Equipment Officer shall be responsible for the maintenance of the Club’s equipment, ensure an accurate inventory and to ensure equipment is available for the Club’s rambling activities. + 7. Welfare Officer and Equity, Diversity and Inclusion (EDI) Officer shall be responsible for coordinating with the UoN engage program and helping arrange the club’s Engage activities. They shall also be responsible for the general welfare of the Club’s members as well as the club’s efforts to promote equity, diversity and inclusion. + 8. Trip secretary shall be responsible for planning, organising and running the ‘Weekend Aways’ (weekend-long trips). This may include (but is not limited to) finding hostels to present to committee, organising logistics (including minibus pickup timings and hostel cleaning) and working with the president with regards to communicating with members on the trip. + 5. Committee members must be full members of the Club. + 6. Two Honorary Vice Presidents, appointed by the President, will have a ceremonial position and non-organising role within the club. + 7. Committee members, who fail to fulfil their duties, may be removed from position by a simple majority vote of no confidence at an Extraordinary General Meeting (EGM) after attempting to reach a resolution through informal discussions with the Sports Officer. To propose a vote of no confidence, a written petition outlining the reasons for such a vote must be submitted to the Sports Officer from at least 20% of members, or 40 members, whichever is less, to the Club Committee + 8. Following receipt of the petition, the Sports Officer will then inform the committee and issue them 5 Union days to service notice to the full members of the club that an EGM will be talking place to hear this petition. + 9. Any issues relating to the misconduct of a committee member in their role should be referred to the Students’ Union Code of Conduct. + +5. Elections + 1. All committee members must be democratically elected and hold hustings at an Annual General Meeting (AGM) or at an Extraordinary General Meeting (EGM). + 2. Elections shall be carried out in accordance with the Students’ Union Bye-Laws on Elections on all committee positions. It is recommended that elections are carried out online, centrally through the Students’ Union. + +6. Finance + 1. All monies shall be held in accounts at the Students’ Union Finance Office with no accounts held externally. + 2. All monies shall be used to support the Club’s Aims and Objectives as outlined in Clause 2 of this constitution. + +7. General Meetings + 1. The Annual General Meeting (AGM) shall be held annually in accordance with the UoN Sport Bye-Law. + 2. An Extraordinary General Meeting (EGM) may be called by the club committee for attendance by the membership. + 3. Notice of the AGM or EGM must be communicated to the Club’s membership a minimum of 5 Union days in advance. + 4. The quorum for the AGM or EGM shall be either one third of all the full members or 20 full members, whichever is the lesser. + 5. If an AGM or EGM is declared inquorate, the Club shall report this to the Sports Officer. + 6. The Club must submit the full agenda and minutes of their AGM or EGM to the Students’ Sport Council (if requested). + +8. Constitution + 1. Any amendments not relating to the Aims and Objectives of the Club Constitution may be changed by a two-thirds majority of all Full Members present at an AGM or EGM. + 2. Any amendments relating to the Aims and Objectives of the Club Constitution will need to be ratified by a two-thirds majority of all Full Members present at an AGM or EGM and ratified by Sports Council. + 3. This Club Constitution shall be subordinate to the Students’ Union Bye-Laws. diff --git a/content/faq/index.md b/content/faq/index.md index 07fc56f..97daa18 100644 --- a/content/faq/index.md +++ b/content/faq/index.md @@ -1,18 +1,40 @@ --- menu: main: - name: F&Q + name: FAQ title: Frequently Asked Questions --- {{< accordian >}} -{{< accordianItem title="Lorem ipsum dolor sit amet, consectetur adipiscing elit?" >}} -Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Pellentesque habitant morbi tristique senectus et netus et. Semper viverra nam libero justo laoreet. Feugiat vivamus at augue eget arcu dictum varius duis at. In vitae turpis massa sed. Sit amet volutpat consequat mauris nunc congue nisi. Egestas quis ipsum suspendisse ultrices. Nulla at volutpat diam ut venenatis tellus. Congue mauris rhoncus aenean vel elit scelerisque. Quam quisque id diam vel quam elementum pulvinar etiam non. Adipiscing at in tellus integer feugiat scelerisque varius morbi enim. Commodo elit at imperdiet dui. Ultrices sagittis orci a scelerisque purus semper eget duis at. +{{< accordianItem title="What are the bus times?" >}} +For the Sunday hikes we provide transport for you to and from the location of the hike. Please see below the timings and location of the bus stops. **ARRIVE 5 MINUTES BEFORE TIMINGS** +1. 09:00 - [Speaks.Month.Jabs](https://what3words.com/speaks.month.jabs) | Tesco Extra taxi rank in Beeston +2. 09:04 - [Hosts.Overnight.Logic](https://what3words.com/hosts.overnight.logic) | Broadgate Park +3. 09:07 - [Warns.Stir.Secure](https://what3words.com/warns.stir.secure) | Lenton Grove (Humanities) +4. 09:09 - [Number.Villa.Files](https://what3words.com/number.villa.files) | David Ross Sports Village +5. 09:11 - [Pulled.Caves.Port](https://what3words.com/pulled.caves.port) | Lincoln Hall +6. 09:16 - [Apply.Extra.Rewarding](https://what3words.com/apply.extra.rewarding) | Marchwood Close (For Jubilee and Wollaton) +7. 09:18 - [Mole.Retain.Also](https://what3words.com/mole.retain.also) | Raleigh Park +8. 09:21 - [Client.Gravy.Belt](https://what3words.com/client.gravy.belt) | Willoughby Avenue (For Lenton) +9. 09:26 - [Spray.Unable.Rental](https://what3words.com/spray.unable.rental) | University East Entrance Bus Stop (Dunkirk) +10. 09:28 - [Focus.Giving.Ranked](https://what3words.com/focus.giving.ranked) | East Drive Bus Stop + +{{< busImage destination="/img/bus_route.jpg" text="bus route" >}} + +{{< /accordianItem >}} +{{< accordianItem title="Can I join even though I am on Sutton Bonington?" >}} +Yes, of course! You'll have to catch the first hopper bus, as this will get into park campus just before we leave. There are a few SB students who attend our events, with some of them driving. So pop us an email, or message us on social media and we can point you in the right direction! +{{< /accordianItem >}} +{{< accordianItem title="How can you justify these prices?" >}} +We charge each member a £20 fee. This helps us cover the cost of kit, and help subsidise some of the events. Prices for walks are set based on the cost of travel, with the average walk for members costing £13 and £18 for non-members. +{{< /accordianItem >}} +{{< accordianItem title="Where can I get information about socials?" >}} +Socials will be advertised on the webiste, but with more information and a *Im Going* list on our [Facebook page](https://www.facebook.com/groups/uonramblinghiking23). {{< /accordianItem >}} -{{< accordianItem title="Lorem ipsum dolor sit amet, consectetur adipiscing elit?" >}} -Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Pellentesque habitant morbi tristique senectus et netus et. Semper viverra nam libero justo laoreet. Feugiat vivamus at augue eget arcu dictum varius duis at. In vitae turpis massa sed. Sit amet volutpat consequat mauris nunc congue nisi. Egestas quis ipsum suspendisse ultrices. Nulla at volutpat diam ut venenatis tellus. Congue mauris rhoncus aenean vel elit scelerisque. Quam quisque id diam vel quam elementum pulvinar etiam non. Adipiscing at in tellus integer feugiat scelerisque varius morbi enim. Commodo elit at imperdiet dui. Ultrices sagittis orci a scelerisque purus semper eget duis at. +{{< accordianItem title="Can I get a refund?" >}} +Unfortunately, due to the popularity of the club, we are only able to offer refunds the Thursday before the hike. If you get turned away due to inadequate kit, **NO REFUND** will be provided. Only exception to this is due to serious medical or family issues. {{< /accordianItem >}} -{{< accordianItem title="Lorem ipsum dolor sit amet, consectetur adipiscing elit?" >}} -Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Pellentesque habitant morbi tristique senectus et netus et. Semper viverra nam libero justo laoreet. Feugiat vivamus at augue eget arcu dictum varius duis at. In vitae turpis massa sed. Sit amet volutpat consequat mauris nunc congue nisi. Egestas quis ipsum suspendisse ultrices. Nulla at volutpat diam ut venenatis tellus. Congue mauris rhoncus aenean vel elit scelerisque. Quam quisque id diam vel quam elementum pulvinar etiam non. Adipiscing at in tellus integer feugiat scelerisque varius morbi enim. Commodo elit at imperdiet dui. Ultrices sagittis orci a scelerisque purus semper eget duis at. +{{< accordianItem title="I have a question, how do I contact you?" >}} +If you have any questions or concerns, the easiest and quickest way is on our [Instagram page](https://www.instagram.com/uon_rambling_hiking/). {{< /accordianItem >}} {{< /accordian >}} \ No newline at end of file diff --git a/content/firstPost.md b/content/firstPost.md deleted file mode 100644 index 7aa1514..0000000 --- a/content/firstPost.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "FirstPost" -date: 2023-05-29T15:02:59+01:00 -draft: true -tags: ["foo", "bar"] ---- - diff --git a/content/gear/index.md b/content/gear/index.md index 3b53b47..22bcc7a 100644 --- a/content/gear/index.md +++ b/content/gear/index.md @@ -1,17 +1,43 @@ --- menu: main: - name: General Kit - parent: Gear + name: Gear + weight: 4 title: General Kit --- -Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Pellentesque habitant morbi tristique senectus et netus et. Semper viverra nam libero justo laoreet. Feugiat vivamus at augue eget arcu dictum varius duis at. In vitae turpis massa sed. Sit amet volutpat consequat mauris nunc congue nisi. Egestas quis ipsum suspendisse ultrices. Nulla at volutpat diam ut venenatis tellus. Congue mauris rhoncus aenean vel elit scelerisque. Quam quisque id diam vel quam elementum pulvinar etiam non. Adipiscing at in tellus integer feugiat scelerisque varius morbi enim. Commodo elit at imperdiet dui. Ultrices sagittis orci a scelerisque purus semper eget duis at. +*Quick Links* +- [Sunday Hike Essentials](#sunday-hike-essentials) +- [Purchasing Kit](#purchasing-kit) + - [Member Deals](#member-deals) + - [General Sites](#general-sites) +- [Opportunities Fund](#opportunities-fund) -Facilisis mauris sit amet massa vitae tortor. Nibh tortor id aliquet lectus. Lorem donec massa sapien faucibus et molestie ac feugiat sed. Pulvinar mattis nunc sed blandit libero volutpat. Quam quisque id diam vel quam. Ut faucibus pulvinar elementum integer enim neque. Consectetur purus ut faucibus pulvinar elementum integer enim. Arcu felis bibendum ut tristique et egestas quis ipsum suspendisse. Placerat vestibulum lectus mauris ultrices eros in cursus. Aliquam malesuada bibendum arcu vitae elementum curabitur vitae nunc. Cras tincidunt lobortis feugiat vivamus at augue eget. Ut lectus arcu bibendum at varius. Interdum posuere lorem ipsum dolor sit. Ullamcorper morbi tincidunt ornare massa. +Having the right kit is the most important requirement when attending our events. If you turn up to a hike with the wrong kit and leaders deem your gear inappropriate, you will be unable to participate and regrettably cannot be refunded. +## Sunday Hike Essentials +- Walking Boots - **NOT TRAINERS** - Walking boots are touch soles, ankle support and some level of waterproofing. +- Suitable trousers for walking - **NOT JEANS** +- 2L of Water (3L on long or hot days) +- Backpack (20-30 litres is ideal) +- Waterproof Coat +- Lunch and snacks +- Warm Layers - Especially during our colder months. (Don't forget those hats and gloves) -Quam id leo in vitae. Auctor urna nunc id cursus metus aliquam eleifend. Quam lacus suspendisse faucibus interdum posuere. Non consectetur a erat nam at lectus. Nulla porttitor massa id neque aliquam vestibulum morbi blandit. Interdum velit euismod in pellentesque massa placerat duis. Magna fringilla urna porttitor rhoncus. Erat nam at lectus urna duis convallis. Urna porttitor rhoncus dolor purus non enim praesent. Diam donec adipiscing tristique risus nec feugiat in. Varius duis at consectetur lorem donec massa sapien. Ultrices in iaculis nunc sed augue. Nunc mi ipsum faucibus vitae. Lectus proin nibh nisl condimentum id. Turpis egestas pretium aenean pharetra magna ac placerat vestibulum. Blandit massa enim nec dui nunc mattis enim. +## Purchasing Kit +Leaders and Committee would be more than happy to help recommended kit and where to purchase. There's plenty of stores locally and online. With most having discount! +### Member Deals +Becoming a member allows you to attend events, and at a reduced rate. Not only that, you can access some sweet discount at these retailers. Codes are sent out on our weekly newsletter. +- [Magic Mountain](https://www.magic-mountain.co.uk/) - **15% Member Discount** +- [Montane](https://montane.com/) - **15% Member Discount** +- [Mountain Warehouse](https://www.mountainwarehouse.com/) - **15% Member Discount** +- [Trespass](https://www.trespass.com/) - **20% Member Discount** 244 Victoria Centre, Nottingham NG1 3QE +- [Cotswold Outdoor](https://www.cotswoldoutdoor.com/) -  **10% Member/Student Discount** | Castle Buildings, Castle Blvd, Nottingham NG7 1SA +### General Sites +- [Decathlon](https://www.decathlon.co.uk/) - East, Giltbrook Retail Park, Giltbrook, Nottingham NG16 2RP +- JD Group - All with **15% Student Discount** + - [Blacks](https://www.blacks.co.uk/) - 12 Exchange Walk, Nottingham NG1 2NX + - [GO Outdoors](https://www.gooutdoors.co.uk/) - 8-10 Mansfield Rd, Daybrook, Nottingham NG5 6BP + - [Millets](https://www.millets.co.uk/) -Elementum sagittis vitae et leo duis ut diam quam. Vulputate sapien nec sagittis aliquam malesuada bibendum arcu. Vulputate odio ut enim blandit volutpat maecenas. Et malesuada fames ac turpis egestas. Arcu bibendum at varius vel pharetra vel. Eget felis eget nunc lobortis. Mi tempus imperdiet nulla malesuada pellentesque elit eget gravida. Scelerisque in dictum non consectetur a erat nam. Lacus luctus accumsan tortor posuere ac ut consequat. Tortor posuere ac ut consequat semper viverra. Feugiat in ante metus dictum at tempor. Vitae turpis massa sed elementum tempus egestas. Elit pellentesque habitant morbi tristique senectus. Enim nunc faucibus a pellentesque sit amet. At consectetur lorem donec massa sapien faucibus et molestie ac. Ullamcorper velit sed ullamcorper morbi tincidunt. Faucibus purus in massa tempor nec feugiat nisl pretium fusce. Aenean sed adipiscing diam donec. Sagittis aliquam malesuada bibendum arcu vitae elementum curabitur. Nibh praesent tristique magna sit. - -Vulputate dignissim suspendisse in est ante in nibh. Platea dictumst quisque sagittis purus sit. Cras pulvinar mattis nunc sed blandit libero volutpat sed. Commodo ullamcorper a lacus vestibulum sed arcu non odio euismod. Nunc sed augue lacus viverra. Vel pretium lectus quam id leo in vitae turpis. Nunc mi ipsum faucibus vitae aliquet nec ullamcorper. Tempus egestas sed sed risus pretium quam vulputate. Consectetur lorem donec massa sapien faucibus et molestie ac feugiat. Sem integer vitae justo eget magna fermentum iaculis. Egestas fringilla phasellus faucibus scelerisque eleifend donec pretium. At urna condimentum mattis pellentesque id nibh tortor. Velit ut tortor pretium viverra suspendisse potenti nullam ac. Massa tincidunt dui ut ornare lectus sit amet est placerat. Commodo ullamcorper a lacus vestibulum. Arcu odio ut sem nulla pharetra. Amet tellus cras adipiscing enim eu turpis egestas pretium. Sapien faucibus et molestie ac feugiat sed lectus. Suscipit adipiscing bibendum est ultricies. \ No newline at end of file +## Opportunities Fund +As part of the cost of living situation, the students union is giving eligible students **£200** to spend towards club kit and fees each academic year. Find out more by visiting their [cost of living support](https://su.nottingham.ac.uk/activities/opportunities-fund) \ No newline at end of file diff --git a/content/socials/0129.md b/content/socials/0129.md new file mode 100644 index 0000000..2aa5b9f --- /dev/null +++ b/content/socials/0129.md @@ -0,0 +1,7 @@ +--- +title: "Rammy Birthday Night Out" +date: 2025-01-29T19:00:00+01:00 +end_date: 2025-01-30T03:00:00+01:00 +lng: "-1.1540451652287558" +lat: "52.95600542109079" +--- diff --git a/content/socials/0205.md b/content/socials/0205.md new file mode 100644 index 0000000..d44d303 --- /dev/null +++ b/content/socials/0205.md @@ -0,0 +1,7 @@ +--- +title: "EGM & Movie Night" +date: 2025-02-05T19:00:00+01:00 +end_date: 2025-02-05T22:00:00+01:00 +lng: "-1.198280590384333" +lat: "52.940234022715" +--- diff --git a/content/socials/0210.md b/content/socials/0210.md new file mode 100644 index 0000000..25d1549 --- /dev/null +++ b/content/socials/0210.md @@ -0,0 +1,7 @@ +--- +title: "Pub Quiz Night" +date: 2025-02-10T19:00:00+01:00 +end_date: 2025-02-10T22:00:00+01:00 +lng: "-1.1802080038501552" +lat: "52.94234841914835" +--- \ No newline at end of file diff --git a/content/socials/0212/cover.jpg b/content/socials/0212/cover.jpg new file mode 100644 index 0000000..eec7ab6 Binary files /dev/null and b/content/socials/0212/cover.jpg differ diff --git a/content/socials/0212/index.md b/content/socials/0212/index.md new file mode 100644 index 0000000..fd5b3ed --- /dev/null +++ b/content/socials/0212/index.md @@ -0,0 +1,7 @@ +--- +title: "Varsity Ice Hockey" +date: 2024-02-12T19:00:00+01:00 +end_date: 2024-02-12T22:00:00+01:00 +lng: "-1.1396841116067433" +lat: "52.95259311665551" +--- \ No newline at end of file diff --git a/content/socials/0219.md b/content/socials/0219.md new file mode 100644 index 0000000..3098541 --- /dev/null +++ b/content/socials/0219.md @@ -0,0 +1,7 @@ +--- +title: "Myserty Social" +date: 2025-02-19T19:00:00+01:00 +end_date: 2025-02-19T23:00:00+01:00 +lng: "-1.1540451652287558" +lat: "52.95600542109079" +--- diff --git a/content/socials/0220/cover.jpg b/content/socials/0220/cover.jpg new file mode 100644 index 0000000..645cc93 Binary files /dev/null and b/content/socials/0220/cover.jpg differ diff --git a/content/socials/0220/index.md b/content/socials/0220/index.md new file mode 100644 index 0000000..58e0a6d --- /dev/null +++ b/content/socials/0220/index.md @@ -0,0 +1,7 @@ +--- +title: "Bob Ross Paint-Along" +date: 2024-02-20T19:00:00+01:00 +end_date: 2024-02-20T22:00:00+01:00 +lng: "-1.198280590384333" +lat: "52.940234022715" +--- diff --git a/content/socials/0226.md b/content/socials/0226.md new file mode 100644 index 0000000..dc99363 --- /dev/null +++ b/content/socials/0226.md @@ -0,0 +1,7 @@ +--- +title: "Boardgame Night" +date: 2025-02-26T19:00:00+01:00 +end_date: 2025-02-26T22:00:00+01:00 +lng: "-1.1540451652287558" +lat: "52.95600542109079" +--- diff --git a/content/socials/0301/cover.jpg b/content/socials/0301/cover.jpg new file mode 100644 index 0000000..5a5a760 Binary files /dev/null and b/content/socials/0301/cover.jpg differ diff --git a/content/socials/0301/index.md b/content/socials/0301/index.md new file mode 100644 index 0000000..24f853a --- /dev/null +++ b/content/socials/0301/index.md @@ -0,0 +1,7 @@ +--- +title: "Ocean Social" +date: 2024-03-01T22:00:00+01:00 +end_date: 2024-03-02T03:00:00+01:00 +lng: "-1.149784062907735" +lat: "52.949150284202084" +--- diff --git a/content/socials/0305.md b/content/socials/0305.md new file mode 100644 index 0000000..f750fcb --- /dev/null +++ b/content/socials/0305.md @@ -0,0 +1,7 @@ +--- +title: "Scavenger (Easter Egg) Hunt" +date: 2025-03-05T19:00:00+01:00 +end_date: 2025-03-05T22:00:00+01:00 +lng: "-1.1540451652287558" +lat: "52.95600542109079" +--- diff --git a/content/socials/0306/cover.jpg b/content/socials/0306/cover.jpg new file mode 100644 index 0000000..f8ef507 Binary files /dev/null and b/content/socials/0306/cover.jpg differ diff --git a/content/socials/0306/index.md b/content/socials/0306/index.md new file mode 100644 index 0000000..704127f --- /dev/null +++ b/content/socials/0306/index.md @@ -0,0 +1,7 @@ +--- +title: "Toby Carvery Dinner" +date: 2024-03-06T19:00:00+01:00 +end_date: 2024-03-06T22:00:00+01:00 +lng: "-1.0953810869915512" +lat: "52.955223707397174" +--- \ No newline at end of file diff --git a/content/socials/0312.md b/content/socials/0312.md new file mode 100644 index 0000000..c0bd856 --- /dev/null +++ b/content/socials/0312.md @@ -0,0 +1,7 @@ +--- +title: "Pub Social" +date: 2025-03-12T19:00:00+01:00 +end_date: 2025-03-12T22:00:00+01:00 +lng: "-1.1802080038501552" +lat: "52.94234841914835" +--- diff --git a/content/socials/0319.md b/content/socials/0319.md new file mode 100644 index 0000000..d4ea098 --- /dev/null +++ b/content/socials/0319.md @@ -0,0 +1,7 @@ +--- +title: "AGM Meeting" +date: 2024-03-19T19:00:00+01:00 +end_date: 2024-03-19T21:00:00+01:00 +lng: "-1.198280590384333" +lat: "52.940234022715" +--- \ No newline at end of file diff --git a/content/socials/0328.md b/content/socials/0328.md new file mode 100644 index 0000000..769cd00 --- /dev/null +++ b/content/socials/0328.md @@ -0,0 +1,7 @@ +--- +title: "Cocktails & Canapaes" +date: 2025-03-28T19:00:00+01:00 +end_date: 2025-03-28T21:00:00+01:00 +lng: "-1.198280590384333" +lat: "52.940234022715" +--- \ No newline at end of file diff --git a/content/socials/0508.md b/content/socials/0508.md new file mode 100644 index 0000000..7ac9918 --- /dev/null +++ b/content/socials/0508.md @@ -0,0 +1,7 @@ +--- +title: "Laser Tag" +date: 2024-05-08T19:00:00+01:00 +end_date: 2024-05-08T21:00:00+01:00 +lng: "-1.1473422030930907" +lat: "52.95345992354635" +--- diff --git a/content/socials/0515.md b/content/socials/0515.md new file mode 100644 index 0000000..52cc519 --- /dev/null +++ b/content/socials/0515.md @@ -0,0 +1,7 @@ +--- +title: "Pub Trip" +date: 2024-05-15T19:00:00+01:00 +end_date: 2024-05-15T21:00:00+01:00 +lng: "-1.1473422030930907" +lat: "52.95345992354635" +--- diff --git a/content/socials/0529.md b/content/socials/0529.md new file mode 100644 index 0000000..7266baf --- /dev/null +++ b/content/socials/0529.md @@ -0,0 +1,7 @@ +--- +title: "Boating on Lake" +date: 2024-05-29T18:00:00+01:00 +end_date: 2024-05-29T20:00:00+01:00 +lng: "-1.1923552147196745" +lat: "52.937373048308885" +--- diff --git a/content/socials/0608.md b/content/socials/0608.md new file mode 100644 index 0000000..f987495 --- /dev/null +++ b/content/socials/0608.md @@ -0,0 +1,7 @@ +--- +title: "Awards Evening" +date: 2024-06-08T19:00:00+01:00 +end_date: 2024-06-09T01:00:00+01:00 +lng: "-1.1537246486693653" +lat: "52.954801904973074" +--- diff --git a/content/socials/0619.md b/content/socials/0619.md new file mode 100644 index 0000000..249bcd4 --- /dev/null +++ b/content/socials/0619.md @@ -0,0 +1,7 @@ +--- +title: "End of year BBQ" +date: 2024-06-19T19:00:00+01:00 +end_date: 2024-06-19T22:00:00+01:00 +lng: "-1.1749209900670505" +lat: "52.95125670338614" +--- \ No newline at end of file diff --git a/content/socials/0925/cover.png b/content/socials/0925/cover.png new file mode 100644 index 0000000..7687865 Binary files /dev/null and b/content/socials/0925/cover.png differ diff --git a/content/socials/0925/index.md b/content/socials/0925/index.md new file mode 100644 index 0000000..02d1906 --- /dev/null +++ b/content/socials/0925/index.md @@ -0,0 +1,7 @@ +--- +title: "Pub Trip - Meet & Greet" +date: 2024-09-25T19:00:00+01:00 +end_date: 2024-09-25T23:00:00+01:00 +lng: "-1.1802960942711411" +lat: "52.94237515048315" +--- diff --git a/content/socials/0927.md b/content/socials/0927.md new file mode 100644 index 0000000..a395f98 --- /dev/null +++ b/content/socials/0927.md @@ -0,0 +1,7 @@ +--- +title: "Pub Trip - Meet & Greet" +date: 2023-09-27T19:00:00+01:00 +end_date: 2023-09-27T23:00:00+01:00 +lng: "-1.1802960942711411" +lat: "52.94237515048315" +--- diff --git a/content/socials/1002.md b/content/socials/1002.md new file mode 100644 index 0000000..5ba1455 --- /dev/null +++ b/content/socials/1002.md @@ -0,0 +1,7 @@ +--- +title: "Mini Golf" +date: 2024-10-02T19:00:00+01:00 +end_date: 2024-10-02T23:00:00+01:00 +lng: "-1.1506623964757494" +lat: "52.95558046031777" +--- \ No newline at end of file diff --git a/content/socials/1004.md b/content/socials/1004.md new file mode 100644 index 0000000..68871aa --- /dev/null +++ b/content/socials/1004.md @@ -0,0 +1,7 @@ +--- +title: "Mini Golf or Climbing" +date: 2023-10-04T19:00:00+01:00 +end_date: 2023-10-04T23:00:00+01:00 +lng: "-1.1506623964757494" +lat: "52.95558046031777" +--- \ No newline at end of file diff --git a/content/socials/1011/cover.jpg b/content/socials/1011/cover.jpg new file mode 100644 index 0000000..5a5a760 Binary files /dev/null and b/content/socials/1011/cover.jpg differ diff --git a/content/socials/1011/index.md b/content/socials/1011/index.md new file mode 100644 index 0000000..6aba659 --- /dev/null +++ b/content/socials/1011/index.md @@ -0,0 +1,7 @@ +--- +title: "Ocean w/Karaoke" +date: 2024-10-11T19:00:00+01:00 +end_date: 2024-10-11T23:00:00+01:00 +lng: "-1.1502336062132008" +lat: "52.95326957798056" +--- \ No newline at end of file diff --git a/content/socials/1016.md b/content/socials/1016.md new file mode 100644 index 0000000..30aade5 --- /dev/null +++ b/content/socials/1016.md @@ -0,0 +1,7 @@ +--- +title: "Bowling" +date: 2024-10-16T19:00:00+01:00 +end_date: 2024-10-16T23:00:00+01:00 +lng: "-1.1408239151568758" +lat: "52.95287544908874" +--- diff --git a/content/socials/1018/cover.png b/content/socials/1018/cover.png new file mode 100644 index 0000000..b97c1f1 Binary files /dev/null and b/content/socials/1018/cover.png differ diff --git a/content/socials/1018/index.md b/content/socials/1018/index.md new file mode 100644 index 0000000..18de4fa --- /dev/null +++ b/content/socials/1018/index.md @@ -0,0 +1,7 @@ +--- +title: "Crisis x UoN Korfball" +date: 2023-10-18T19:00:00+01:00 +end_date: 2023-10-19T03:00:00+01:00 +lng: "-1.1540451652287558" +lat: "52.95600542109079" +--- diff --git a/content/socials/1023.md b/content/socials/1023.md new file mode 100644 index 0000000..d9046ef --- /dev/null +++ b/content/socials/1023.md @@ -0,0 +1,7 @@ +--- +title: "Soft Play" +date: 2024-10-23T19:00:00+01:00 +end_date: 2024-10-23T21:00:00+01:00 +lng: "-1.1616750398077709" +lat: "52.98100684086934" +--- \ No newline at end of file diff --git a/content/socials/1025.md b/content/socials/1025.md new file mode 100644 index 0000000..1e12fd9 --- /dev/null +++ b/content/socials/1025.md @@ -0,0 +1,7 @@ +--- +title: "Pizza & Pumpkin Carving" +date: 2023-10-25T19:00:00+01:00 +end_date: 2023-10-25T23:00:00+01:00 +lng: "-1.198280590384333" +lat: "52.940234022715" +--- diff --git a/content/socials/1030.md b/content/socials/1030.md new file mode 100644 index 0000000..9b74c3c --- /dev/null +++ b/content/socials/1030.md @@ -0,0 +1,7 @@ +--- +title: "Pizza & Pumpkin Carving" +date: 2024-10-30T19:00:00+01:00 +end_date: 2024-10-30T23:00:00+01:00 +lng: "-1.198280590384333" +lat: "52.940234022715" +--- diff --git a/content/socials/1101.md b/content/socials/1101.md new file mode 100644 index 0000000..5d0b624 --- /dev/null +++ b/content/socials/1101.md @@ -0,0 +1,7 @@ +--- +title: "Halloween Night Out" +date: 2024-11-01T19:00:00+01:00 +end_date: 2024-11-02T03:00:00+01:00 +lng: "-1.1540451652287558" +lat: "52.95600542109079" +--- diff --git a/content/socials/1106.md b/content/socials/1106.md new file mode 100644 index 0000000..1bb2cd6 --- /dev/null +++ b/content/socials/1106.md @@ -0,0 +1,7 @@ +--- +title: "Bonfire Night" +date: 2024-11-06T19:00:00+01:00 +end_date: 2024-11-06T23:00:00+01:00 +lng: "-1.198280590384333" +lat: "52.940234022715" +--- diff --git a/content/socials/1108.md b/content/socials/1108.md new file mode 100644 index 0000000..3e7b5e6 --- /dev/null +++ b/content/socials/1108.md @@ -0,0 +1,7 @@ +--- +title: "Member Club Photo" +date: 2023-11-08T17:30:00+01:00 +end_date: 2023-11-08T22:00:00+01:00 +lng: "-1.198280590384333" +lat: "52.940234022715" +--- diff --git a/content/socials/1113.md b/content/socials/1113.md new file mode 100644 index 0000000..02d8c63 --- /dev/null +++ b/content/socials/1113.md @@ -0,0 +1,7 @@ +--- +title: "Member Club Photo" +date: 2024-11-13T18:15:00+01:00 +end_date: 2024-11-13T21:00:00+01:00 +lng: "-1.198280590384333" +lat: "52.940234022715" +--- diff --git a/content/socials/1115.md b/content/socials/1115.md new file mode 100644 index 0000000..3654c89 --- /dev/null +++ b/content/socials/1115.md @@ -0,0 +1,7 @@ +--- +title: "Soft Play" +date: 2023-11-15T19:00:00+01:00 +end_date: 2023-11-15T21:00:00+01:00 +lng: "-1.1616750398077709" +lat: "52.98100684086934" +--- \ No newline at end of file diff --git a/content/socials/1120.md b/content/socials/1120.md new file mode 100644 index 0000000..1712818 --- /dev/null +++ b/content/socials/1120.md @@ -0,0 +1,7 @@ +--- +title: "Bake & Ale" +date: 2024-11-20T19:00:00+01:00 +end_date: 2024-11-20T23:00:00+01:00 +lng: "-1.1523805999495036" +lat: "52.953118636755754" +--- diff --git a/content/socials/1122.md b/content/socials/1122.md new file mode 100644 index 0000000..9c3e4e3 --- /dev/null +++ b/content/socials/1122.md @@ -0,0 +1,7 @@ +--- +title: "Arts and Crafts" +date: 2023-11-22T19:00:00+01:00 +end_date: 2023-11-22T22:00:00+01:00 +lng: "-1.198280590384333" +lat: "52.940234022715" +--- diff --git a/content/socials/1129.md b/content/socials/1129.md new file mode 100644 index 0000000..163fe15 --- /dev/null +++ b/content/socials/1129.md @@ -0,0 +1,7 @@ +--- +title: "Cheese & Wine" +date: 2024-11-29T19:00:00+01:00 +end_date: 2024-11-29T23:00:00+01:00 +lng: "-1.1726439502772728" +lat: "52.951976006305834" +--- diff --git a/content/socials/1201.md b/content/socials/1201.md new file mode 100644 index 0000000..8df7213 --- /dev/null +++ b/content/socials/1201.md @@ -0,0 +1,7 @@ +--- +title: "Cheese & Wine" +date: 2023-12-01T19:00:00+01:00 +end_date: 2023-12-01T23:00:00+01:00 +lng: "-1.1726439502772728" +lat: "52.951976006305834" +--- \ No newline at end of file diff --git a/content/socials/1204.md b/content/socials/1204.md new file mode 100644 index 0000000..9ccd205 --- /dev/null +++ b/content/socials/1204.md @@ -0,0 +1,7 @@ +--- +title: "Gingerbread House Making" +date: 2024-12-04T17:30:00+01:00 +end_date: 2024-12-04T22:00:00+01:00 +lng: "-1.198280590384333" +lat: "52.940234022715" +--- diff --git a/content/socials/1206.md b/content/socials/1206.md new file mode 100644 index 0000000..af821a9 --- /dev/null +++ b/content/socials/1206.md @@ -0,0 +1,7 @@ +--- +title: "Bake & Ale" +date: 2023-12-06T19:00:00+01:00 +end_date: 2023-12-06T23:00:00+01:00 +lng: "-1.1523805999495036" +lat: "52.953118636755754" +--- diff --git a/content/socials/1211.md b/content/socials/1211.md new file mode 100644 index 0000000..0fc4872 --- /dev/null +++ b/content/socials/1211.md @@ -0,0 +1,7 @@ +--- +title: "Christmas Meal" +date: 2024-12-11T19:00:00+01:00 +end_date: 2024-12-11T23:00:00+01:00 +lng: "-1.1452399972414606" +lat: "52.9509670005959" +--- \ No newline at end of file diff --git a/content/socials/1213.md b/content/socials/1213.md new file mode 100644 index 0000000..bec982e --- /dev/null +++ b/content/socials/1213.md @@ -0,0 +1,7 @@ +--- +title: "Christmas Meal" +date: 2023-12-13T19:00:00+01:00 +end_date: 2023-12-13T23:00:00+01:00 +lng: "-1.1452399972414606" +lat: "52.9509670005959" +--- \ No newline at end of file diff --git a/content/socials/1213/cover.jpg b/content/socials/1213/cover.jpg new file mode 100644 index 0000000..5a5a760 Binary files /dev/null and b/content/socials/1213/cover.jpg differ diff --git a/content/socials/1213/index.md b/content/socials/1213/index.md new file mode 100644 index 0000000..e494678 --- /dev/null +++ b/content/socials/1213/index.md @@ -0,0 +1,7 @@ +--- +title: "Ocean Social" +date: 2024-12-13T22:00:00+01:00 +end_date: 2024-12-14T03:00:00+01:00 +lng: "-1.149784062907735" +lat: "52.949150284202084" +--- diff --git a/content/socials/1215/cover.jpg b/content/socials/1215/cover.jpg new file mode 100644 index 0000000..5a5a760 Binary files /dev/null and b/content/socials/1215/cover.jpg differ diff --git a/content/socials/1215/index.md b/content/socials/1215/index.md new file mode 100644 index 0000000..eb7bb10 --- /dev/null +++ b/content/socials/1215/index.md @@ -0,0 +1,7 @@ +--- +title: "Ocean Social" +date: 2023-12-15T22:00:00+01:00 +end_date: 2023-12-16T03:00:00+01:00 +lng: "-1.149784062907735" +lat: "52.949150284202084" +--- diff --git a/content/socials/_index.md b/content/socials/_index.md index abb8fcb..9c91ddb 100644 --- a/content/socials/_index.md +++ b/content/socials/_index.md @@ -5,4 +5,4 @@ menu: parent: Get Involved weight: 2 title: Socials ---- \ No newline at end of file +--- diff --git a/content/sponsorship/index.md b/content/sponsorship/index.md index af7d68b..182b915 100644 --- a/content/sponsorship/index.md +++ b/content/sponsorship/index.md @@ -1,7 +1,4 @@ --- -menu: - main: - name: Sponsorship title: Sponsorship --- diff --git a/content/sunday-walk-info.md b/content/sunday-walk-info.md index e22846c..79401f3 100644 --- a/content/sunday-walk-info.md +++ b/content/sunday-walk-info.md @@ -3,10 +3,34 @@ title: "Sunday Walk Info" --- ## What to bring -Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Pellentesque habitant morbi tristique senectus et netus et. Semper viverra nam libero justo laoreet. Feugiat vivamus at augue eget arcu dictum varius duis at. In vitae turpis massa sed. Sit amet volutpat consequat mauris nunc congue nisi. Egestas quis ipsum suspendisse ultrices. Nulla at volutpat diam ut venenatis tellus. Congue mauris rhoncus aenean vel elit scelerisque. Quam quisque id diam vel quam elementum pulvinar etiam non. Adipiscing at in tellus integer feugiat scelerisque varius morbi enim. Commodo elit at imperdiet dui. Ultrices sagittis orci a scelerisque purus semper eget duis at. +- Walking Boots - **NOT TRAINERS** +- Suitable trousers for walking - **NOT JEANS** +- 2L of Water (3L on long or hot days) +- Backpack (20-30 litres is ideal) +- Waterproof Coat +- Lunch and snacks +- Warm Layers - Especially during our colder months. (Don't forget those hats and gloves) + +More information can be found on the [gear page](/gear) ## Cost -Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Pellentesque habitant morbi tristique senectus et netus et. Semper viverra nam libero justo laoreet. Feugiat vivamus at augue eget arcu dictum varius duis at. In vitae turpis massa sed. Sit amet volutpat consequat mauris nunc congue nisi. Egestas quis ipsum suspendisse ultrices. Nulla at volutpat diam ut venenatis tellus. Congue mauris rhoncus aenean vel elit scelerisque. Quam quisque id diam vel quam elementum pulvinar etiam non. Adipiscing at in tellus integer feugiat scelerisque varius morbi enim. Commodo elit at imperdiet dui. Ultrices sagittis orci a scelerisque purus semper eget duis at. +Members: £13 + +Non-members: £18 ## Where to meet us -Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Pellentesque habitant morbi tristique senectus et netus et. Semper viverra nam libero justo laoreet. Feugiat vivamus at augue eget arcu dictum varius duis at. In vitae turpis massa sed. Sit amet volutpat consequat mauris nunc congue nisi. Egestas quis ipsum suspendisse ultrices. Nulla at volutpat diam ut venenatis tellus. Congue mauris rhoncus aenean vel elit scelerisque. Quam quisque id diam vel quam elementum pulvinar etiam non. Adipiscing at in tellus integer feugiat scelerisque varius morbi enim. Commodo elit at imperdiet dui. Ultrices sagittis orci a scelerisque purus semper eget duis at. +For the Sunday hikes we provide transport for you to and from the location of the hike. Please see below the timings and location of the bus stops. +**ARRIVE 5 MINUTES BEFORE TIMINGS** + +1. 09:00 - [Speaks.Month.Jabs](https://what3words.com/speaks.month.jabs) | Tesco Extra taxi rank in Beeston +2. 09:04 - [Hosts.Overnight.Logic](https://what3words.com/hosts.overnight.logic) | Broadgate Park +3. 09:07 - [Warns.Stir.Secure](https://what3words.com/warns.stir.secure) | Lenton Grove (Humanities) +4. 09:09 - [Number.Villa.Files](https://what3words.com/number.villa.files) | David Ross Sports Village +5. 09:11 - [Pulled.Caves.Port](https://what3words.com/pulled.caves.port) | Lincoln Hall +6. 09:16 - [Apply.Extra.Rewarding](https://what3words.com/apply.extra.rewarding) | Marchwood Close (For Jubilee and Wollaton) +7. 09:18 - [Mole.Retain.Also](https://what3words.com/mole.retain.also) | Raleigh Park +8. 09:21 - [Client.Gravy.Belt](https://what3words.com/client.gravy.belt) | Willoughby Avenue (For Lenton) +9. 09:26 - [Spray.Unable.Rental](https://what3words.com/spray.unable.rental) | University East Entrance Bus Stop (Dunkirk) +10. 09:28 - [Focus.Giving.Ranked](https://what3words.com/focus.giving.ranked) | East Drive Bus Stop + +{{< busImage destination="/img/bus_route.jpg" text="bus route" >}} diff --git a/content/training.md b/content/training.md new file mode 100644 index 0000000..5ef4723 --- /dev/null +++ b/content/training.md @@ -0,0 +1,65 @@ +--- +menu: + main: + parent: Get Involved + name: Leader Training + weight: 2 +title: Leader Training +--- + +**Ramsoc needs leaders!** - So we're always on the look out for enthusiastic people to try their hand at walk leading. There's no pressure to lead walks after doing the training, but many people find it's a great way to get more involved in the club and find it very rewarding! +## Grade 2 +### Introduction +Grade 2 training consists of a 1 day practical course and Thursday evening theory session. To build up grade 2 walking experience, the practical day is run in grade 2 territory in the north of the Peak District. The course has been designed especially for the Rambling Society's needs. All leaders running the training all have widespread experience of leading grades 2 and 3 walks. + +Places are limited on this course as a very large training group would lower the teaching quality. However, there are two separate grade 2 training courses to be run this year. ([Check Dates](/walks)) They are separated by a few months to allow trainees to practice their leading skills and allows us to get a bigger intake. + +The course is subsidised and so is only open to those members who are serious about leading grade 2 walks and helping the society. A small charge will be made to each trainee to cover transport costs and pizza! +### Course Content + +#### Practical Day +- Off path walking +- Macro navigation +- Micro navigation (finding ground features less then 1mm large on the map) +- Timing +- Pacing +- Compass work +- All done in a variety of terrain + +#### Evening Theory +- Leadership responsibilities +- Equipment +- Party management +- Incident management +- Hypothermia +- Questions session + +## Grade 3 +### Introduction +A Grade 3 leader must have widespread experience of leading lower grades of walk and be familiar with walking in mountainous terrain. For this reason, grade 3 training must be done in mountainous terrain. Ramsoc runs a three day course in Lake District to allow trainees to build up valuable mountain experience and also cover all aspects of mountain walk leading. The course has been designed especially for the Rambling Society's needs. As well as practical training during the day, theory material has been organised for the evening (1-2 hours) making for an intensive and arduous few days. The course has been organised by current Ramsoc members in conjunction with the Students Union. All members of the organising team have widespread experience of leading grade 3 walks. + +Places are limited on this course as a very large training group would lower the teaching quality. The course is heavily subsidised so is only open to those members who are serious about leading grade 3 mountainous walks and would therefore be an asset to the society. A charge will be made to each trainee to cover their accommodation costs. + +### Course Content +#### Evening Theory Session +- Leader responsibilities +- Party management +- Mountain hazards (terrain, people, weather etc.) +- Incident management +- Ramsoc procedures +- Mountain Rescue +- Equipment and clothing + +#### Practical Day Sessions + +- Mountain navigation practice. +- Improvised carries and shelter. +- Security on steep ground techniques. +- Steep ground route finding. +- Communication skills. +- Full practice day where everyone has a chance to lead. Other trainees act out scenarios for the current leader to deal with. + +It must be stressed that the training alone will not automatically make people grade 3. After liaising with the course organisers, it is at the rambling secretary's and the safety officer's discretion who meets grade 3 leader standards. No-one will be allowed or expected to lead a grade 3 walk alone straight after such a training course. Trainees will be given the opportunity to lead a grade 3 walk under the supervision of the more experienced members until they have gained enough experience and skills to lead alone. + +## First Aid +First aiders play a vital role in ensuring the safety and well-being of our club members. While we all cherish the thrill of outdoor adventures, accidents can happen, and being prepared can make all the difference. To empower our members with this crucial skillset, we offer the opportunity to complete a Level 2 [REC Outdoor First Aid Course](https://recfirstaid.net/course&course_id=6). This is subsidised by the club, and is normally run a the start of semester 2. \ No newline at end of file diff --git a/content/walks/bakewell/index.md b/content/walks/bakewell/index.md index 5293447..c8897e8 100644 --- a/content/walks/bakewell/index.md +++ b/content/walks/bakewell/index.md @@ -1,50 +1,8 @@ --- title: "Bakewell" -date: 2023-07-10T14:15:59-06:00 +date: 2024-12-08T09:00:00-00:00 lng: "-1.6762" lat: "53.2152" -photo_link: "https://photos.google.com/share/AF1QipP7-VBx9MDFWN_ABFhhM1RzZMZc55BK8zH6_ZkTc0BXJKKVBr-Ej-bwaQYom0GsQA?key=RVdWaWFhRkhqelp6Q3BSaGo2aE9JQmlDc0dDY1lB" -ticket_link: "https://www.eventbrite.co.uk/e/walk-in-bakewell-with-the-rambling-and-hiking-club-tickets-642864895207" --- -{{< walks >}} -{{< generalInfo >}} -Good morning everyone and welcome to the Peak District National Park, the UK’s first national park! Our walks today explore the countryside surrounding the picturesque historic market town of Bakewell in what is known as the ‘White Peak’, a gently rolling limestone plateau dissected by beautiful dales. Bakewell is famous for its tarts and puddings, and we recommend you reward yourself with a visit to the bakery at the end of the walk! - -We are offering 4 walks today, ranging in length and difficulty, which are described below. Walks 1, 2a and 2b are ideal for those new to hiking or enjoy a social, slow-paced walk with plenty of photo opportunities (and a bit longer in Bakewell). -Walks 3a and 3b are more challenging, with and require a faster walking pace with fewer stops. - -Please be honest with your capabilities. We can advise you on which walks would be best for you; if you are unsure, we are happy to help! -
-{{< sundayWalkInfo >}} - -{{< /generalInfo >}} - -{{% walk name="Walk 1" os="https://explore.osmaps.com/route/17112352/bakewell-walk-1--june-2023-fionn" %}} - - -Follow the footpath along the hedgerow for 1.75km with the River Wye on the R. At the junction with the track, bear left and follow it up the hill as it bends sharply above an old railway tunnel. Stay on the bridleway as it veers a sharp right off the track and across fields, with Haddon Hall down on the right. Follow the bridleway as it turns left along a walled track, over a junction and uphill past the entrance to Bowling Green Farm. Follow the road downhill, keeping left at the junction, until it reaches a track junction at the southern edge of Manners Wood (SK 243 670). Here, take the bridleway ahead uphill into Manners Wood. Follow the bridleway up this steep section for 500m until the junction with the Haddon estate concession path (SK 244 673). Here turn left and follow the concession path for 1.5km and keep left at the fork. Follow the path until it reaches a stream in a small gully (SK 230 687), cross it and turn left. The path descends through a golf course where it bears R and crosses a bridge above the Monsal Trail and down the field beyond and onto a gated lane. Turn R at the T-junction with Coombes Road. At the end of the road turn L and cross Bakewell Bridge, finishing the walk at The Red Lion. - -![cover2.jpg](cover2.jpg) - - -{{% /walk %}} - -{{< walk name="Walk 2a" os="https://explore.osmaps.com/route/17113196/bakewell-walk-2a--june-2023-fionn">}} -Follow the footpath that skirts around the business centre, and turn R down Coombes Road. Take the first L, up a gated lane. Follow it through a field where it bears R across a bridge above the Monsal Trail and through a golf course. The route briefly enters Manners Wood, continuing straight along the footpath. Exiting the woodland, follow the footpath for 1.5km through the fields, continuing straight at the crossroads by the pond, until a sharp R turn at the crossroads near Carlton Houses (SK 247 687). Descend down the path, keeping L, past Carlton Houses and follow the bridleway beside a stream for 1.25km until it reaches Carlton Lees. At the junction follow the L-hand bend and follow it past Chatsworth Garden Centre and enter Chatsworth Park. Cross the B6012 and follow the first path that bears R towards the ruin of Chatsworth Mill. Follow the path alongside the River Derwent for 1.5km, passing two weirs and fabulous views of Chatsworth House, until the route reaches Paine’s Bridge (SK 257 701). Here, turn L and follow the footpath that curves R towards Edensor. Cross the B6012 and follow the lane for 1.75km, which begins in the village before climbing a steep hill. At the junction, turn L and follow the road for 750m until it reaches the woods. Here, take the footpath that descends through the woods. The footpath reemerges at Station Road, follow the road into Bakewell and across Bakewell Bridge, finishing the walk at The Red Lion. -{{< /walk >}} - -{{< walk name="Walk 2b" os="https://explore.osmaps.com/route/17100233/bakewell-walk-2b--june-2023-fionn">}} -Cross the footbridge to Smith’s Island and immediately turn R down the road. Shortly turn L down the riverside footpath. Cross the A619 and continue along the riverside footpath. Turn L at Holme lane and then turn R at the junction, following the bridleway up the hill. Follow the bridleway for 2km until it reaches the Monsal Trail. Here turn L and follow the Monsal Trail for 3.25km. After walking through the 490m long Headstone Tunnel, the trail emerges on the impressive Headstone Viaduct (SK 182 715). Take in the views of the River Wye before turning back and turning L up the footpath and climb up the valley to Monsal Head. Follow the footpath defines the boundary between woodland and fields for 500m and follow it as it bears L into the fields. Follow the footpath as it meanders through fields until it becomes Pennyunk Lane. Follow the lane until it terminates at Ashford in the Water, here turn R at the T-junction. Follow the road through the village, past the bridge and the Church, and cross the A6020. Follow a small lane that crosses the River Wye, then immediately turn L and follow the footpath by the river for 1.25km. At the A6 turn L and follow it for 1.25km into Bakewell, finishing the walk at The Red Lion. -{{< /walk >}} - -{{< walk name="Walk 3a" os="https://explore.osmaps.com/route/17115281/bakewell-walk-3a--june-2023-fionn">}} -Cross the footbridge to Smith’s Island, and another onto Grandby Croft. Immediately turn L, walk along the river, and cut across recreation ground. At the A6 turn L and follow it for 500m. Cross the A6 and turn R down Intake Lane and follow it for 1.25km. At the end of the lane, turn L and then shortly turn R down New Close Lane. After 500m, bear L and follow the footpath through the fields and into Over Haddon. Follow the road through the village and at the grass triangle turn L down the twisting lane to the bottom of Lathkill Dale. Follow the permissive footpath along the River Lathkill for 2km, passing Mandale Mine and Bateman’s House. Once exiting Palmerston Wood and reaching Carter’s Mill (SK 183 657), turning R and follow the footpath that climbs out the valley. Cross the road and follow the footpath across the field. Turn R and briefly follow the B5055. Turn L down green lane, bear L at the end of the lane and follow the road as it bears L for 1km. Turn R along the track to Magpie Mine (SK 172 681). At the Magpie Mine, follow the path that bears R and follow it for 1km. At the road turn R and follow it to the T-junction, where the route turns L. Shortly take the lane that bears R and follow it for 750m. When the road curves to the R, continue straight down the footpath. Cross the A6 and cross the bridge into Ashford in the Water, turn R past the church and cross the A6020. Follow a small lane that crosses the River Wye, then immediately turn L and follow the footpath by the river for 1.25km. At the A6, turn L and follow it for 1.25km into Bakewell, finishing the walk at The Red Lion. -{{< /walk >}} - -{{< walk name="Walk 3b" os="https://explore.osmaps.com/route/17114195/bakewell-walk-3b--june-2023-fionn">}} -Cross the footbridge to Smith’s Island and immediately turn R down the road. At the T-junction, turn L down Coombes Road then immediately turn R up Station Street. After crossing over the bridge above the Monsal Trail, bear R and ascend up the footpath through the woods. Immediately turn R down the track once exiting the woods, and follow it for 1km. At the crossroads by the pond, turn L and follow the path through fields for 1.5km. Turn L at the crossroads near Carlton Houses (SK 247 687). Follow the walled bridleway through the woods. After entering Chatsworth Park, continue straight along the footpath as the bridleway veers the R. Follow the path for 1km, aiming for the spire of the church in Edensor. Entering Edensor, turn R and follow the road through the village. Cross the B6012 and follow the footpath that curves R towards Chatsworth House. At Paine’s Bridge (SK 257 701), turn R and follow the path alongside the River Derwent for 1.5km, bearing L at the fork, passing fabulous views of Chatsworth House and two weirs. At the ruin of Chatsworth Mill, turn R and cross the B6012. Follow the road past Chatsworth Garden Centre, and after the road curves R, turn L. Follow the Derwent Valley Heritage Way for 2.5km to Rowsley. Turn R up Church Lane and follow the Bridleway up the hill and through the woods for 1.75km. Turn R at the track junction at the southern edge of Manners Wood (SK 243 670), take the bridleway uphill into Manners Wood. Follow the bridleway up this steep section for 500m until the junction with the Haddon estate concession path (SK 244 673). Here turn L and follow the concession path for 1.5km and keep L at the fork. Follow the path until it reaches a stream in a small gully (SK 230 687), cross it and turn L. The path descends through a golf course where it bears R and crosses a bridge above the Monsal Trail and down the field beyond and onto a gated lane. Turn R at the T-junction with Coombes Road. At the end of the road turn L and cross Bakewell Bridge, finishing the walk at The Red Lion. -{{< /walk >}} - -{{< /walks >}} diff --git a/content/walks/bakewell/walk2.jpg b/content/walks/bakewell/walk2.jpg new file mode 100644 index 0000000..e64564c Binary files /dev/null and b/content/walks/bakewell/walk2.jpg differ diff --git a/content/walks/bamford/index.md b/content/walks/bamford/index.md new file mode 100644 index 0000000..94b6e28 --- /dev/null +++ b/content/walks/bamford/index.md @@ -0,0 +1,5 @@ +--- +title: "Bamford" +lng: "-1.6895" +lat: "53.3485" +--- diff --git a/content/walks/baslow/index.md b/content/walks/baslow/index.md new file mode 100644 index 0000000..41d94c1 --- /dev/null +++ b/content/walks/baslow/index.md @@ -0,0 +1,5 @@ +--- +title: "Baslow" +lng: "-1.6224" +lat: "53.2514" +--- diff --git a/content/walks/blackhill/cover.png b/content/walks/blackhill/cover.png new file mode 100644 index 0000000..9b5530a Binary files /dev/null and b/content/walks/blackhill/cover.png differ diff --git a/content/walks/blackhill/index.md b/content/walks/blackhill/index.md new file mode 100644 index 0000000..7ea84e0 --- /dev/null +++ b/content/walks/blackhill/index.md @@ -0,0 +1,41 @@ +--- +title: "Blackhill" +lng: "-1.8834141689748538" +lat: "53.53894292385345" +date: 2024-09-22T08:00:00+01:00 +ticket_link: "https://su.nottingham.ac.uk/events/id/6769-black-hill-hike" +--- + + +{{< walks >}} +{{< generalInfo >}} + +{{< sundayWalkInfo >}} + +{{< /generalInfo >}} + +{{% walk name="Walk A" os="https://explore.osmaps.com/route/23379659/black-hill-walk-a"%}} + +### Difficulty Grade: **Easy** + +{{% /walk %}} + +{{% walk name="Walk B" os="https://explore.osmaps.com/route/23211006/black-hill-walk-b"%}} + +### Difficulty Grade: **Difficult** + +{{% /walk %}} + +{{% walk name="Walk C" os="https://explore.osmaps.com/route/23379574/black-hill-walk-c"%}} + +### Difficulty Grade: **Difficult** + +{{% /walk %}} + +{{% walk name="Walk D" os="https://explore.osmaps.com/route/23209960/black-hill-walk-d"%}} + +### Difficulty Grade: **Difficult** + +{{% /walk %}} + +{{< /walks >}} \ No newline at end of file diff --git a/content/walks/bleaklow/index.md b/content/walks/bleaklow/index.md new file mode 100644 index 0000000..18cfcd7 --- /dev/null +++ b/content/walks/bleaklow/index.md @@ -0,0 +1,5 @@ +--- +title: "Bleaklow" +lng: "-1.8590" +lat: "53.4612" +--- diff --git a/content/walks/bradfield/cover.jpg b/content/walks/bradfield/cover.jpg new file mode 100644 index 0000000..16b6860 Binary files /dev/null and b/content/walks/bradfield/cover.jpg differ diff --git a/content/walks/bradfield/index.md b/content/walks/bradfield/index.md new file mode 100644 index 0000000..c048c5a --- /dev/null +++ b/content/walks/bradfield/index.md @@ -0,0 +1,44 @@ +--- +title: "Bradfield" +lng: "-1.6432989188227467" +lat: "53.42194216686488" +date: 2025-03-09T08:00:00+01:00 +ticket_link: "https://su.nottingham.ac.uk/events/id/7537-bradfield-sunday-hike" +--- + +{{< walks >}} +{{< generalInfo >}} + +{{< sundayWalkInfo >}} + +{{< /generalInfo >}} + +{{% walk name="Walk 1" os="https://explore.osmaps.com/route/25178150/bradfield-walk-1--march-2025-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 2" os="https://explore.osmaps.com/route/25181748/bradfield-walk-2--march-2025-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 3" os="https://explore.osmaps.com/route/25130929/bradfield-walk-3--march-2025-fionn"%}} + + +{{% /walk %}} + + +{{% walk name="Walk 4" os="https://explore.osmaps.com/route/25130743/bradfield-walk-4--march-2025-fionn"%}} + + +{{% /walk %}} + + +{{% walk name="Walk 5" os="https://explore.osmaps.com/route/25131466/bradfield-walk-5--march-2025-fionn"%}} + + +{{% /walk %}} + + +{{< /walks >}} \ No newline at end of file diff --git a/content/walks/cannockchase/index.md b/content/walks/cannockchase/index.md new file mode 100644 index 0000000..5196f78 --- /dev/null +++ b/content/walks/cannockchase/index.md @@ -0,0 +1,5 @@ +--- +title: "Cannock Chase" +lng: "-1.9859" +lat: "52.7183" +--- diff --git a/content/walks/castleton/cover.jpg b/content/walks/castleton/cover.jpg new file mode 100644 index 0000000..a39bd11 Binary files /dev/null and b/content/walks/castleton/cover.jpg differ diff --git a/content/walks/castleton/index.md b/content/walks/castleton/index.md new file mode 100644 index 0000000..bde678d --- /dev/null +++ b/content/walks/castleton/index.md @@ -0,0 +1,39 @@ +--- +title: "Castleton" +date: 2025-01-26T09:00:00-00:00 +lng: "-1.7765" +lat: "53.3437" +ticket_link: "https://su.nottingham.ac.uk/events/id/7518-castleton-sunday-hike" +--- + +{{< walks >}} +{{< generalInfo >}} + +{{< sundayWalkInfo >}} + +{{< /generalInfo >}} + +{{% walk name= "Walk 1" os="https://explore.osmaps.com/route/24741607/castleton-walk-1--january-2025-fionn" %}} + +{{% /walk %}} + +{{% walk name= "Walk 2" os="https://explore.osmaps.com/route/24741776/castleton-walk-2--january-2025-fionn" %}} + +{{% /walk %}} + +{{% walk name="Walk 3" os="https://explore.osmaps.com/route/24741762/castleton-walk-3--january-2025-fion" %}} + + +{{% /walk %}} + +{{% walk name="Walk 4" os="https://explore.osmaps.com/route/24741585/castleton-walk-4--january-2025-fionn" %}} + + +{{% /walk %}} + +{{% walk name="Walk 5" os="https://explore.osmaps.com/route/24741552/castleton-walk-5--january-2025-fionn" %}} + + +{{% /walk %}} + +{{< /walks >}} diff --git a/content/walks/dovedale/cover.jpeg b/content/walks/dovedale/cover.jpeg new file mode 100644 index 0000000..08297c4 Binary files /dev/null and b/content/walks/dovedale/cover.jpeg differ diff --git a/content/walks/dovedale/index.md b/content/walks/dovedale/index.md new file mode 100644 index 0000000..e540f7a --- /dev/null +++ b/content/walks/dovedale/index.md @@ -0,0 +1,138 @@ +--- +title: "Dovedale - Just Play" +date: 2023-10-01T09:00:00-00:00 +lng: "-1.7833" +lat: "53.0667" +ticket_link: "https://su.nottingham.ac.uk/events/id/5179-just-play-dovedale-walk" +photo_link: "https://photos.app.goo.gl/4Z1ui7ArXhLSPkNZA" +--- + + +{{< walks >}} +{{< generalInfo >}} +For those of you who are walking with us for the first time - Welcome to Ramsoc! On today’s +walk we will be exploring beautiful Dovedale, one of the most famous places in the Peak +District. Dovedale features a steep wooded ravine with incredible limestone formations such +as pillars and caves, and of course the picturesque Dovedale Stepping Stones. +We are offering up to 4 walks today, ranging in length and difficulty, which are described below. +Walks 1 and 2 are ideal for those new to hiking or enjoy a social, slow-paced walk with plenty of photo +opportunities (and a bit longer in the pub). +Walks 3 and 4 are more challenging, covering more distance and ascent. They require a faster walking pace +with fewer stops. +
+{{< sundayWalkInfo >}} + +{{< /generalInfo >}} + +{{% walk name="Walk 1" os="https://explore.osmaps.com/route/18635158/dovedale-walk-1--october-2023-fionn" %}} +## Dovedale Classic (Shorter) + +Walk 1 begins at a bus stop on the A515 by Aslop Station Car Park +(SK 155 549). Follow the footpath southwest for 250m and cross +Green Lane. Continue straight for 750m. At Nabs View bear right at +the fork. Shortly after, bear right again and descend into Dovedale, +meeting the river at Dove Holes. Handrail with the River Dove on +the right for 3km, passing Ilam Rock, Reynard’s Cave, Tissington +Spires, Lover’s Leap until eventually reaching the Stepping Stones. +The route departs the river, turning left to follow the footpath up +Lin Dale. If time forbids it, it is possible to ascend Thorpe Cloud for +the incredible views of Dovedale. Climbing Thorpe Cloud will add +1km to the route and △ 80m of elevation (roughly 30 minutes). +Take the first right out of Lin Dale down a track into Thorpe. Turn +left at the road and follow it for 250m. Turn right and follow the +road for 750m. Cross Spends Lane and follow the footpath across +the Tissington Trail and fields for 1km until it reaches Fenny +Bentley. Turn left down Ashes Lane and turn right down the +footpath by the church. Cross the A515 and finish the walk at the +Coach & Horses (SK 175 500). +{{% /walk %}} + +{{% walk name="Walk 2" os="https://explore.osmaps.com/route/18635218/dovedale-walk-2--october-2023-fionn"%}} +## Dovedale and Bunster Hill (Shorter) + +Walk 2 begins at a bus stop on the A515 by Aslop Station Car Park +(SK 155 549). Follow the footpath southwest for 250m and turn +right, briefly following Green Lane. Bear left and follow the footpath +along the outcrop towards Shining Tor for 1.5km. The path steeply +descends, meeting the river at Milldale. Handrail with the River +Dove on the right for 2km, passing Dove Holes, until reaching Ilam +Rock. Turn right and cross the footbridge, the path then steeply +ascends through Dovedale Wood. Upon reaching the top of the +dale, turn left and follow the footpath through fields by the top edge +of Dovedale Wood for 1km. At Ilamtops Farm, turn left and follow +the footpath down Bunster Hill for 750m. At the crossroads turn +left and follow permissive footpath that follows the contour around +the edge of Bunster Hill. At the River Dove, turn left and follow the +footpath and cross the Stepping Stones. The route departs the river, +following the footpath up Lin Dale. If time forbids it, it is possible to +ascend Thorpe Cloud for the incredible views of Dovedale. +Climbing Thorpe Cloud will add 1km to the route and △ 80m of +elevation (roughly 30 minutes). Take the first right out of Lin Dale +down a track into Thorpe. Turn left at the road and follow it for +250m. Turn right and follow the road for 750m. Cross Spends Lane +and follow the footpath across the Tissington Trail and fields for +1km until it reaches Fenny Bentley. Turn left down Ashes Lane and +turn right down the footpath by the church. Cross the A515 and +finish the walk at the Coach & Horses (SK 175 500). +{{% /walk %}} + +{{% walk name="Walk 3" os="https://explore.osmaps.com/route/18635271/dovedale-walk-3--october-2023-fionn"%}} +## Dovedale Classic (Longer) + +Walk 3 begins at a lay-by on the A515 (SK159 565). Turn left down +Liffs Road and abruptly turn left again to follow the Tissington Trail +for 1km. At Nettly Knowle turn right and follow the footpath as it +descends into the dale. At the crossroads, turn left and follow the +footpath, meeting the river at Coldeaton Bridge. Turn left and +follow the river for 1.5km until you reach the road at Load Mill. +Turn left and follow the road for 250m. Turn right and follow the +steep footpath up Shining Tor. Turn right and follow the footpath +along the outcrop for 1.25km. Handrail with the River Dove on the +right for 4km, passing Dove Holes, Ilam Rock, Reynard’s Cave, +Tissington Spires, Lover’s Leap until eventually reaching the Stepping +Stones. The route departs the river, turning left to follow the +footpath up Lin Dale. If time forbids it, it is possible to ascend +Thorpe Cloud for the incredible views of Dovedale. Climbing +Thorpe Cloud will add 1km to the route and △ 80m of elevation +(roughly 30 minutes). Take the first right out of Lin Dale down a +track into Thorpe. Turn left at the road and follow it for 250m. +Turn right and follow the road for 750m. Cross Spends Lane and +follow the footpath across the Tissington Trail and fields for 1km +until it reaches Fenny Bentley. Turn left down Ashes Lane and turn +right down the footpath by the church. Cross the A515 and finish +the walk at the Coach & Horses (SK 175 500). +{{% /walk %}} + +{{% walk name="Walk 4" os="https://explore.osmaps.com/route/18635370/dovedale-walk-4--october-2023-fionn"%}} +## Dovedale and Bunster Hill (Longer) + +Walk 4 begins at a lay-by on the A515 (SK159 565). Turn left down +Liffs Road for 250m. Turn left down the footpath and follow it for +1.5km as it descends into the dale, meeting the river at Coldeaton +Bridge. Turn left and follow the river for 1.5km until you reach the +road at Load Mill. Turn left and follow the road for 250m. Turn +right and follow the steep footpath up Shining Tor. Turn right and +follow the footpath along the outcrop for 1.25km. The path steeply +descends, meeting the river at Milldale. Handrail with the River +Dove on the right for 2km, passing Dove Holes, until reaching Ilam +Rock. Turn right and cross the footbridge, the path then steeply +ascends through Dovedale Wood. Upon reaching the top of the +dale, turn left and follow the footpath through fields by the top edge +of Dovedale Wood for 1km. At Ilamtops Farm, turn left and follow +the footpath down Bunster Hill for 750m. At the crossroads turn +left and follow permissive footpath that follows the contour around +the edge of Bunster Hill. At the River Dove, turn left and follow the +footpath and cross the Stepping Stones. The route departs the river, +following the footpath up Lin Dale. If time forbids it, it is possible to +ascend Thorpe Cloud for the incredible views of Dovedale. +Climbing Thorpe Cloud will add 1km to the route and △ 80m of +elevation (roughly 30 minutes). Take the first right out of Lin Dale +down a track into Thorpe. Turn left at the road and follow it for +250m. Turn right and follow the road for 750m. Cross Spends Lane +and follow the footpath across the Tissington Trail and fields for +1km until it reaches Fenny Bentley. Turn left down Ashes Lane and +turn right down the footpath by the church. Cross the A515 and +finish the walk at the Coach & Horses (SK 175 500). +{{% /walk %}} + +{{< /walks >}} \ No newline at end of file diff --git a/content/walks/dragons_back/cover.jpg b/content/walks/dragons_back/cover.jpg new file mode 100644 index 0000000..10f3008 Binary files /dev/null and b/content/walks/dragons_back/cover.jpg differ diff --git a/content/walks/dragons_back/index.md b/content/walks/dragons_back/index.md new file mode 100644 index 0000000..8b2b8e8 --- /dev/null +++ b/content/walks/dragons_back/index.md @@ -0,0 +1,32 @@ +--- +title: "Dragons Back" +lng: "-1.8977758151171056" +lat: "53.20308893380729" +date: 2025-03-02T09:00:00+01:00 +ticket_link: "https://su.nottingham.ac.uk/events/id/7535-dragon-s-back-sunday-hike" +--- + +{{< walks >}} +{{< generalInfo >}} + +{{< sundayWalkInfo >}} + +{{< /generalInfo >}} + +{{% walk name= "Walk 1" os="https://explore.osmaps.com/route/25131685/dragons-back-walk-1--march-2025-fionn" %}} + +{{% /walk %}} + +{{% walk name= "Walk 2" os="https://explore.osmaps.com/route/25131735/dragons-back-walk-2--march-2025-fionn" %}} + +{{% /walk %}} + +{{% walk name="Walk 3" os="https://explore.osmaps.com/route/25131990/dragons-back-walk-3--march-2025-fionn" %}} + +{{% /walk %}} + +{{% walk name="Walk 4" os="https://explore.osmaps.com/route/25131823/dragons-back-walk-4--march-2025-fionn" %}} + +{{% /walk %}} + +{{< /walks >}} diff --git a/content/walks/east_lakes/index.md b/content/walks/east_lakes/index.md new file mode 100644 index 0000000..3132669 --- /dev/null +++ b/content/walks/east_lakes/index.md @@ -0,0 +1,7 @@ +--- +title: "Eastern Lake District Weekend Away" +date: 2025-04-25T16:00:00+01:00 +end_date: 2025-04-27T22:00:00+01:00 +lng: "-3.0123713399900685" +lat: "54.5261732613349" +--- \ No newline at end of file diff --git a/content/walks/edale/index.md b/content/walks/edale/index.md index 8228b75..f4de307 100644 --- a/content/walks/edale/index.md +++ b/content/walks/edale/index.md @@ -2,8 +2,40 @@ title: "Edale" lng: "-1.8158" lat: "53.3673" +date: 2024-10-13T08:00:00+01:00 +ticket_link: "https://su.nottingham.ac.uk/events/id/6821-edale-hike" --- -Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Pellentesque habitant morbi tristique senectus et netus et. Semper viverra nam libero justo laoreet. Feugiat vivamus at augue eget arcu dictum varius duis at. In vitae turpis massa sed. Sit amet volutpat consequat mauris nunc congue nisi. Egestas quis ipsum suspendisse ultrices. Nulla at volutpat diam ut venenatis tellus. Congue mauris rhoncus aenean vel elit scelerisque. Quam quisque id diam vel quam elementum pulvinar etiam non. Adipiscing at in tellus integer feugiat scelerisque varius morbi enim. Commodo elit at imperdiet dui. Ultrices sagittis orci a scelerisque purus semper eget duis at. +{{< walks >}} +{{< generalInfo >}} -Facilisis mauris sit amet massa vitae tortor. Nibh tortor id aliquet lectus. Lorem donec massa sapien faucibus et molestie ac feugiat sed. Pulvinar mattis nunc sed blandit libero volutpat. Quam quisque id diam vel quam. Ut faucibus pulvinar elementum integer enim neque. Consectetur purus ut faucibus pulvinar elementum integer enim. Arcu felis bibendum ut tristique et egestas quis ipsum suspendisse. Placerat vestibulum lectus mauris ultrices eros in cursus. Aliquam malesuada bibendum arcu vitae elementum curabitur vitae nunc. Cras tincidunt lobortis feugiat vivamus at augue eget. Ut lectus arcu bibendum at varius. Interdum posuere lorem ipsum dolor sit. Ullamcorper morbi tincidunt ornare massa. +{{< sundayWalkInfo >}} + +{{< /generalInfo >}} + +{{% walk name="Walk 1" os="https://explore.osmaps.com/route/23585017/edale-walk-1--october-2024-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 2" os="https://explore.osmaps.com/route/23584738/edale-walk-2--october-2024-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 3" os="https://explore.osmaps.com/route/23584667/edale-walk-3--october-2024-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 4" os="https://explore.osmaps.com/route/23490057/edale-walk-4--october-2024-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 5" os="https://explore.osmaps.com/route/23584777/edale-walk-5--october-2024-fionn"%}} + + +{{% /walk %}} + +{{< /walks >}} \ No newline at end of file diff --git a/content/walks/ennerdale/cover.jpg b/content/walks/ennerdale/cover.jpg index 4dfa3e6..ea61070 100644 Binary files a/content/walks/ennerdale/cover.jpg and b/content/walks/ennerdale/cover.jpg differ diff --git a/content/walks/ennerdale/index.md b/content/walks/ennerdale/index.md index e5c07c7..5c0863f 100644 --- a/content/walks/ennerdale/index.md +++ b/content/walks/ennerdale/index.md @@ -1,7 +1,7 @@ --- title: "Ennerdale" -date: 2023-10-13T11:54:00-06:00 -end_date: 2023-10-15T11:54:00-06:00 +date: 2023-10-27T16:00:00+01:00 +end_date: 2023-10-29T21:00:00+01:00 lng: "-3.3316030074734457" lat: "54.515007163820904" --- \ No newline at end of file diff --git a/content/walks/eskdale/cover.png b/content/walks/eskdale/cover.png new file mode 100644 index 0000000..ba89151 Binary files /dev/null and b/content/walks/eskdale/cover.png differ diff --git a/content/walks/eskdale/index.md b/content/walks/eskdale/index.md new file mode 100644 index 0000000..accddee --- /dev/null +++ b/content/walks/eskdale/index.md @@ -0,0 +1,7 @@ +--- +title: "Eskdale" +lng: "-3.2650836658967104" +lat: "54.405267414187456" +date: 2024-11-08T16:00:00-00:00 +end_date: 2024-11-10T22:00:00-00:00 +--- \ No newline at end of file diff --git a/content/walks/eyam/cover.png b/content/walks/eyam/cover.png new file mode 100644 index 0000000..23a02c4 Binary files /dev/null and b/content/walks/eyam/cover.png differ diff --git a/content/walks/eyam/index.md b/content/walks/eyam/index.md new file mode 100644 index 0000000..a5e1599 --- /dev/null +++ b/content/walks/eyam/index.md @@ -0,0 +1,37 @@ +--- +title: "Eyam" +lng: "-1.6711" +lat: "53.2842" +date: 2024-12-01T09:00:00+01:00 +ticket_link: "https://su.nottingham.ac.uk/events/id/6825-eyam-hike" +--- + +{{< walks >}} +{{< generalInfo >}} + +{{< sundayWalkInfo >}} + +{{< /generalInfo >}} + +{{% walk name="Walk 1" os="https://explore.osmaps.com/route/24199860/eyam-walk-1--december-2024-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 2" os="https://explore.osmaps.com/route/24199843/eyam-walk-2--december-2024-fion"%}} + + +{{% /walk %}} + +{{% walk name="Walk 3" os="https://explore.osmaps.com/route/24200089/eyam-walk-3--december-2024-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 4" os="https://explore.osmaps.com/route/24199913/eyam-walk-4--december-2024-fionn"%}} + + +{{% /walk %}} + + +{{< /walks >}} diff --git a/content/walks/first_aid/index.md b/content/walks/first_aid/index.md new file mode 100644 index 0000000..59db1ae --- /dev/null +++ b/content/walks/first_aid/index.md @@ -0,0 +1,7 @@ +--- +title: "First Aid (2 Day)" +date: 2025-02-08T08:00:00+01:00 +end_date: 2025-02-09T17:00:00+01:00 +lng: "-1.198280590384333" +lat: "52.940234022715" +--- diff --git a/content/walks/g2/cover.jpg b/content/walks/g2/cover.jpg new file mode 100644 index 0000000..1dade58 Binary files /dev/null and b/content/walks/g2/cover.jpg differ diff --git a/content/walks/g2/index.md b/content/walks/g2/index.md new file mode 100644 index 0000000..1202338 --- /dev/null +++ b/content/walks/g2/index.md @@ -0,0 +1,6 @@ +--- +title: "Grade 2 Training" +date: 2025-02-22T09:00:00-00:00 +lng: "-1.8158" +lat: "53.3673" +--- diff --git a/content/walks/g3/index.md b/content/walks/g3/index.md index e6d315c..29dd13d 100644 --- a/content/walks/g3/index.md +++ b/content/walks/g3/index.md @@ -1,7 +1,7 @@ --- title: "Grade 3 Training" -date: 2023-10-06T11:54:00-06:00 -end_date: 2023-10-09T11:54:00-06:00 +date: 2025-04-01T09:00:00-00:00 +end_date: 2025-04-04T21:00:00-00:00 lng: "-3.1347" lat: "54.6013" --- \ No newline at end of file diff --git a/content/walks/goyt_valley/cover.jpg b/content/walks/goyt_valley/cover.jpg new file mode 100644 index 0000000..0651c9e Binary files /dev/null and b/content/walks/goyt_valley/cover.jpg differ diff --git a/content/walks/goyt_valley/index.md b/content/walks/goyt_valley/index.md new file mode 100644 index 0000000..71a8f90 --- /dev/null +++ b/content/walks/goyt_valley/index.md @@ -0,0 +1,46 @@ +--- +title: "Goyt Valley" +date: 2025-02-09T09:00:00-00:00 +lng: "-1.9808" +lat: "53.2967" +ticket_link: "https://su.nottingham.ac.uk/events/id/7529-goyt-valley-sunday-hike" +--- + +{{< walks >}} +{{< generalInfo >}} + +{{< sundayWalkInfo >}} + +{{< /generalInfo >}} + +{{% walk name="Walk 1" os="https://explore.osmaps.com/route/24943664/goyt-valley-walk-1--february-2025-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 2" os="https://explore.osmaps.com/route/24943744/goyt-valley-walk-2--february-2025-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 3" os="https://explore.osmaps.com/route/24943987/goyt-valley-walk-3--december-2025-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 3b" os="https://explore.osmaps.com/route/24944413/goyt-valley-walk-3b--december-2025-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 4" os="https://explore.osmaps.com/route/24944231/goyt-valley-walk-4--february-2025-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 5" os="https://explore.osmaps.com/route/24944231/goyt-valley-walk-5--february-2025-fionn"%}} + + +{{% /walk %}} + +{{< /walks >}} \ No newline at end of file diff --git a/content/walks/hartington/cover.jpg b/content/walks/hartington/cover.jpg new file mode 100644 index 0000000..e59e29b Binary files /dev/null and b/content/walks/hartington/cover.jpg differ diff --git a/content/walks/hartington/index.md b/content/walks/hartington/index.md new file mode 100644 index 0000000..0754105 --- /dev/null +++ b/content/walks/hartington/index.md @@ -0,0 +1,42 @@ +--- +title: "Hartington (Just Play)" +lng: "-1.8099" +lat: "53.1409" +date: 2024-09-28T09:00:00+01:00 +--- + + + +{{< walks >}} +{{< generalInfo >}} + +{{< sundayWalkInfo >}} + +{{< /generalInfo >}} + +{{% walk name="Walk 1" os="https://explore.osmaps.com/route/23462984/hartington-walk-1--september-2024-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 2" os="https://explore.osmaps.com/route/23463016/hartington-walk-2--september-2024-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 3" os="https://explore.osmaps.com/route/23463260/hartington-walk-3--september-2024-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 5" os="https://explore.osmaps.com/route/23462805/hartington-walk-4--september-2024-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 5" os="https://explore.osmaps.com/route/23462939/hartington-walk-5--september-2024-fionn"%}} + + +{{% /walk %}} + +{{< /walks >}} \ No newline at end of file diff --git a/content/walks/hathersage/cover.jpg b/content/walks/hathersage/cover.jpg new file mode 100644 index 0000000..4aeb3ac Binary files /dev/null and b/content/walks/hathersage/cover.jpg differ diff --git a/content/walks/hathersage/index.md b/content/walks/hathersage/index.md new file mode 100644 index 0000000..8081294 --- /dev/null +++ b/content/walks/hathersage/index.md @@ -0,0 +1,35 @@ +--- +title: "Hathersage" +date: 2024-11-24T09:00:00-00:00 +lng: "-1.6564" +lat: "53.3300" +ticket_link: "https://su.nottingham.ac.uk/events/id/6824-hathersage-hike" +--- +{{< walks >}} +{{< generalInfo >}} + +{{< sundayWalkInfo >}} + +{{< /generalInfo >}} + +{{% walk name="Walk 1" os="https://explore.osmaps.com/route/24117706/hathersage-walk-1--november-2024-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 2" os="https://explore.osmaps.com/route/24117713/hathersage-walk-2--november-2024-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 3" os="https://explore.osmaps.com/route/23489408/hathersage-walk-3--november-2024-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 4" os="https://explore.osmaps.com/route/24117643/hathersage-walk-4--november-2024-fionn"%}} + + +{{% /walk %}} + +{{< /walks >}} diff --git a/content/walks/hayfield/cover.jpg b/content/walks/hayfield/cover.jpg new file mode 100644 index 0000000..572a662 Binary files /dev/null and b/content/walks/hayfield/cover.jpg differ diff --git a/content/walks/hayfield/index.md b/content/walks/hayfield/index.md new file mode 100644 index 0000000..fef32f3 --- /dev/null +++ b/content/walks/hayfield/index.md @@ -0,0 +1,98 @@ +--- +title: "Hayfield" +lng: "-1.9463" +lat: "53.3786" +date: 2024-03-03T09:00:00+01:00 +--- + +{{< walks >}} +{{< generalInfo >}} +Rise and shine Ramblers! Our walks today will be taking place around Hayfield, +predominantly on the western side of the Kinder Scout moorland plateau (the highest point +in the Peak District at an elevation of 636m). ‘The Mass Trespass’ occurred around here on +the 24th April, 1932. Hundreds of protesters defied the law by trespassing onto the prohibited +Kinder Scout via William Clough and scuffled with landowners and gamekeepers. The harsh +punishments for the protest organisers led to a public outcry which fuelled the ‘right to roam +movement’ on open access land and led to the formation of the Peak District National Park. +Some of the routes pass Kinder Downfall, the tallest Waterfall in the Peak District with a +30m drop, and famous for flowing in reverse with the presence of strong winds. It also has +spectacular views west towards Kinder Reservoir. + +
+{{< sundayWalkInfo >}} + +{{< /generalInfo >}} + +{{% walk name= "Walk 2" os="https://explore.osmaps.com/route/20396432/Hayfield-Walk-2-March-2024-Fionn" %}} + +## Mill Hill and Kinder Reservoir + +Walk 2 begins at the bus stop on the A57 at Snake Pass Summit (SK +088 929). Follow the Pennine Way southwest for 4km to reach the +summit of Mill Hill (SK 061 904). Turn left and continue to follow +the Pennine Way for 500m. At the crossroads turn right and follow +the footpath down William Clough for 1.25km. At the fork, bear left +and follow the permissive footpath for 1.25km, handrailing with +Kinder Reservoir on the left. Continue straight and follow the +bridleway for 250m. Continue straight and follow the track for +another 250m. Continue straight and follow Kinder Road for 1km. +Turn left and cross Bowden Bridge. Turn right and follow the +footpath for 500m, handrailing with the River Kinder on the right. +Join Valley Road and continue straight for 750m. Turn right and +finish the walk at the George Hotel (SK 037 869). + +{{% /walk %}} + +{{% walk name="Walk 3" os="https://explore.osmaps.com/route/20397232/Hayfield-Walk-3-March-2024-Fionn" %}} + +## Mill Hill and Lantern Pike + +Walk 3 begins at the bus stop at Snake Pass Summit (SK 088 929). +Follow the Pennine Way southwest for 4km to reach the summit of +Mill Hill (SK 061 904). Turn left and continue to follow the Pennine +Way for 500m. At the crossroads turn right and follow the footpath +down William Clough for 1.25km. At the fork, bear right and follow +the footpath for 1.25km. Continue straight and follow the bridleway +for 250m. At the fork, bear right and follow the bridleway for +2.25km to reach Carr Meadow Farm. Turn left and follow the A624 +for 500m. Turn right and follow the lane for 250m to reach +Brookhouses. Turn left and follow Lanehead Road for 750m, passing +Blackshaw Farm. Turn left and follow the Pennine Bridleway for 500m. At the fork, bear right and follow the path for 250m to reach the summit of Lantern Pike (SK 026 881). Continue straight along the path for 500m. Turn right and rejoin the Pennine Bridleway, following it for 1km. Sharply turn left and follow the footpath for +250m towards the Sewage Works. Turn right and follow the +footpath for 500m, crossing a footbridge over the River Sett. Turn +left and follow the Sett Valley Trail for 1.25km into Hayfield. Cross +the A624 and turn right, finishing the walk at the George Hotel (SK +037 869). +{{% /walk %}} + +{{% walk name="Walk 4" os="https://explore.osmaps.com/route/20396511/Hayfield-Walk-4-March-2024-Fionn" %}} + +## Mill Hill, Kinder Downfall and Kinder Low + +Walk 4 begins at a car park along the A624 (SK 033 909). Follow the path east across Chunal Moor for 1.25km to reach Harry Hut (SK 044 +907). Turn right and follow the path for 750m. Turn left and follow the path for 1.25km to reach the summit of Mill Hill (SK 061 904). +Continue straight and follow the Pennine Way for 6.25km, passing Sandy Heys, Kinder Downfall (SK 083 889), Kinder Low (SK 079 870) +and Edale Rocks. Turn right at the crossroads and follow the bridleway for 1km, passing Edale Cross to reach Oaken Clough. Bear right and +follow the footpath for 500m. At the fork, bear left and follow the footpath for 2km, passing through Turnstead Clough Farm. At the +crossroads, continue straight and follow Edale Road for 500m to reach Bowden Bridge. Continue straight and follow the footpath for 500m, +handrailing with the River Kinder on the right. Join Valley Road and continue straight for 750m. Turn right and finish the walk at the George +Hotel (SK 037 869). + +{{% /walk %}} + +{{% walk name="Walk 5" os="https://explore.osmaps.com/route/20396623/Hayfield-Walk-5-March-2024-Fionn" %}} + +## Snake Path, Kinder Downfall and Kinder Low + +Walk 5 begins at a lay-by on the A57 in Snake Woodland (SK 109 910). Follow the track for 250m towards the River Ashop. Turn left and +follow the permissive footpath for 500m. Turn right and cross the footbridge over the River Ashop. Follow the Snake Path for 5.25km up +Ashop Clough . At the crossroads, turn left and follow the Pennine Way for 5.75km, passing Sandy Heys, Kinder Downfall (SK 083 889), +Kinder Low (SK 079 870) and Edale Rocks. Turn right at the crossroads and follow the bridleway for 1km, passing Edale Cross to reach +Oaken Clough. Bear right and follow the footpath for 500m. At the fork, bear left and follow the footpath for 2km, passing through +Turnstead Clough Farm. At the crossroads, continue straight and follow Edale Road for 500m to reach Bowden Bridge. Continue straight +and follow the footpath for 500m, handrailing with the River Kinder on the right. Join Valley Road and continue straight for 750m. Turn +right and finish the walk at the George Hotel (SK 037 869). + +{{% /walk %}} + +{{< /walks >}} diff --git a/content/walks/hope/index.md b/content/walks/hope/index.md index bbc77e0..fa87cb4 100644 --- a/content/walks/hope/index.md +++ b/content/walks/hope/index.md @@ -1,10 +1,5 @@ --- title: "Hope" -date: 2023-06-17T11:54:00-06:00 lng: "-1.7428" lat: "53.3481" --- - -Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Pellentesque habitant morbi tristique senectus et netus et. Semper viverra nam libero justo laoreet. Feugiat vivamus at augue eget arcu dictum varius duis at. In vitae turpis massa sed. Sit amet volutpat consequat mauris nunc congue nisi. Egestas quis ipsum suspendisse ultrices. Nulla at volutpat diam ut venenatis tellus. Congue mauris rhoncus aenean vel elit scelerisque. Quam quisque id diam vel quam elementum pulvinar etiam non. Adipiscing at in tellus integer feugiat scelerisque varius morbi enim. Commodo elit at imperdiet dui. Ultrices sagittis orci a scelerisque purus semper eget duis at. - -Facilisis mauris sit amet massa vitae tortor. Nibh tortor id aliquet lectus. Lorem donec massa sapien faucibus et molestie ac feugiat sed. Pulvinar mattis nunc sed blandit libero volutpat. Quam quisque id diam vel quam. Ut faucibus pulvinar elementum integer enim neque. Consectetur purus ut faucibus pulvinar elementum integer enim. Arcu felis bibendum ut tristique et egestas quis ipsum suspendisse. Placerat vestibulum lectus mauris ultrices eros in cursus. Aliquam malesuada bibendum arcu vitae elementum curabitur vitae nunc. Cras tincidunt lobortis feugiat vivamus at augue eget. Ut lectus arcu bibendum at varius. Interdum posuere lorem ipsum dolor sit. Ullamcorper morbi tincidunt ornare massa. diff --git a/content/walks/kettlewell/cover.jpg b/content/walks/kettlewell/cover.jpg new file mode 100644 index 0000000..fc16488 Binary files /dev/null and b/content/walks/kettlewell/cover.jpg differ diff --git a/content/walks/kettlewell/index.md b/content/walks/kettlewell/index.md new file mode 100644 index 0000000..87ec0f9 --- /dev/null +++ b/content/walks/kettlewell/index.md @@ -0,0 +1,7 @@ +--- +title: "Kettlewell" +date: 2024-02-09T16:00:00+01:00 +end_date: 2024-02-11T22:00:00+01:00 +lng: "-2.0475" +lat: "54.1472" +--- diff --git a/content/walks/ladybower/cover.jpg b/content/walks/ladybower/cover.jpg new file mode 100644 index 0000000..26e8652 Binary files /dev/null and b/content/walks/ladybower/cover.jpg differ diff --git a/content/walks/ladybower/index.md b/content/walks/ladybower/index.md new file mode 100644 index 0000000..487b8ea --- /dev/null +++ b/content/walks/ladybower/index.md @@ -0,0 +1,41 @@ +--- +title: "Ladybower" +date: 2024-11-17T09:00:00-00:00 +lng: "-1.7004" +lat: "53.3691" +ticket_link: "https://su.nottingham.ac.uk/events/id/6823-ladybower-hike" +--- + +{{< walks >}} +{{< generalInfo >}} + +{{< sundayWalkInfo >}} + +{{< /generalInfo >}} + +{{% walk name="Walk 1" os="https://explore.osmaps.com/route/24032941/ladybower-walk-1--november-2024-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 2" os="https://explore.osmaps.com/route/24032988"%}} + + +{{% /walk %}} + +{{% walk name="Walk 3" os="https://explore.osmaps.com/route/24032877"%}} + + +{{% /walk %}} + +{{% walk name="Walk 4" os="https://explore.osmaps.com/route/24032918"%}} + + +{{% /walk %}} + +{{% walk name="Walk 5" os="https://explore.osmaps.com/route/24032833"%}} + + +{{% /walk %}} + +{{< /walks >}} diff --git a/content/walks/langsett/cover.jpg b/content/walks/langsett/cover.jpg new file mode 100644 index 0000000..07eb233 Binary files /dev/null and b/content/walks/langsett/cover.jpg differ diff --git a/content/walks/langsett/index.md b/content/walks/langsett/index.md new file mode 100644 index 0000000..5f7255c --- /dev/null +++ b/content/walks/langsett/index.md @@ -0,0 +1,5 @@ +--- +title: "Langsett" +lng: "-1.6805" +lat: "53.5006" +--- diff --git a/content/walks/matlock/index.md b/content/walks/matlock/index.md new file mode 100644 index 0000000..60d89d7 --- /dev/null +++ b/content/walks/matlock/index.md @@ -0,0 +1,5 @@ +--- +title: "Matlock" +lng: "-1.5518" +lat: "53.1372" +--- diff --git a/content/walks/mystery/index.md b/content/walks/mystery/index.md new file mode 100644 index 0000000..2812b6b --- /dev/null +++ b/content/walks/mystery/index.md @@ -0,0 +1,4 @@ +--- +title: "Mystery Walk" +date: 2025-02-23T08:00:00-00:00 +--- diff --git a/content/walks/night_hike/cover.jpg b/content/walks/night_hike/cover.jpg new file mode 100644 index 0000000..ba6d191 Binary files /dev/null and b/content/walks/night_hike/cover.jpg differ diff --git a/content/walks/night_hike/index.md b/content/walks/night_hike/index.md new file mode 100644 index 0000000..eb7aa23 --- /dev/null +++ b/content/walks/night_hike/index.md @@ -0,0 +1,4 @@ +--- +title: Night Hike +date: 2024-11-03T16:00:00-00:00 +--- diff --git a/content/walks/rydall/cover.jpg b/content/walks/rydall/cover.jpg new file mode 100644 index 0000000..ee61779 Binary files /dev/null and b/content/walks/rydall/cover.jpg differ diff --git a/content/walks/rydall/index.md b/content/walks/rydall/index.md new file mode 100644 index 0000000..a0ea667 --- /dev/null +++ b/content/walks/rydall/index.md @@ -0,0 +1,8 @@ +--- +title: "Central Lake District Weekend Away (Rydal)" +date: 2025-03-14T16:00:00-00:00 +end_date: 2025-03-16T21:00:00-00:00 +lng: "-2.9813589414899044" +lat: "54.447227724691906" +--- + diff --git a/content/walks/shutlingsloe/cover.jpg b/content/walks/shutlingsloe/cover.jpg new file mode 100644 index 0000000..3941f04 Binary files /dev/null and b/content/walks/shutlingsloe/cover.jpg differ diff --git a/content/walks/shutlingsloe/index.md b/content/walks/shutlingsloe/index.md new file mode 100644 index 0000000..83cc12f --- /dev/null +++ b/content/walks/shutlingsloe/index.md @@ -0,0 +1,48 @@ +--- +title: "Shutlingsloe" +date: 2024-10-06T08:00:00-00:00 +lng: "-2.06778" +lat: "53.26067" +ticket_link: "https://su.nottingham.ac.uk/events/id/6820-shutlingsloe-hike" +--- + + + +{{< walks >}} +{{< generalInfo >}} + +{{< sundayWalkInfo >}} + +{{< /generalInfo >}} + +{{% walk name="Walk 1" os="https://explore.osmaps.com/route/23564889/shutlingsloe-walk-1--october-2024-fionn"%}} + +### Difficulty Grade: **Easy** + +{{% /walk %}} + +{{% walk name="Walk 2" os="https://explore.osmaps.com/route/23565313/shutlingsloe-walk-2--october-2024-fionn"%}} + +### Difficulty Grade: **Easy** + +{{% /walk %}} + +{{% walk name="Walk 3" os="https://explore.osmaps.com/route/23565485/shutlingsloe-walk-3--october-2024-fionn"%}} + +### Difficulty Grade: **Moderate** + +{{% /walk %}} + +{{% walk name="Walk 4" os="https://explore.osmaps.com/route/23565097/shutlingsloe-walk-4--october-2024-fionn"%}} + +### Difficulty Grade: **Moderate** + +{{% /walk %}} + +{{% walk name="Walk 5" os="https://explore.osmaps.com/route/23523096/shutlingsloe-walk-5--october-2024-fionn"%}} + +### Difficulty Grade: **Difficult** + +{{% /walk %}} + +{{< /walks >}} \ No newline at end of file diff --git a/content/walks/snowdonia/cover.jpg b/content/walks/snowdonia/cover.jpg new file mode 100644 index 0000000..f803f29 Binary files /dev/null and b/content/walks/snowdonia/cover.jpg differ diff --git a/content/walks/snowdonia/index.md b/content/walks/snowdonia/index.md new file mode 100644 index 0000000..53534f4 --- /dev/null +++ b/content/walks/snowdonia/index.md @@ -0,0 +1,7 @@ +--- +title: "Snowdonia" +date: 2024-10-18T16:00:00-00:00 +end_date: 2024-10-20T21:00:00-00:00 +lng: "-4.1395" +lat: "52.9377" +--- diff --git a/content/walks/stainforth/cover.jpg b/content/walks/stainforth/cover.jpg new file mode 100644 index 0000000..a481062 Binary files /dev/null and b/content/walks/stainforth/cover.jpg differ diff --git a/content/walks/stainforth/index.md b/content/walks/stainforth/index.md new file mode 100644 index 0000000..c45ce22 --- /dev/null +++ b/content/walks/stainforth/index.md @@ -0,0 +1,34 @@ +--- +title: "Yorkshire Dales Weekend Away (Stainforth)" +date: 2025-02-14T16:00:00+01:00 +end_date: 2025-02-16T22:00:00+01:00 +lng: "-2.2770245909453437" +lat: "54.10140074329515" +--- + +{{< walks >}} +{{< generalInfo >}} + +

SIGN UP: https://forms.gle/d5S29umDhimPmixw7

+ + +

Ramsoc's third weekend away of the 2024/25 year is to Stainforth in the Yorkshire Dales National Park!!! The trip will take place on 14th-16th February. Tickets cost £70 and include transport, accommodation and a meal. Fill in this form to register your interest in the trip before 3rd February when places will be allocated. You can still sign up after this date, although it is likely you will be placed on the waiting list. Keep an eye on your emails to find out if you have a space.

+ +

Places will be allocated first to our leaders, first aiders and minibus drivers and then on to members with the highest attendance at the club’s hiking-based events. If you are a non-member you are welcome to sign up, however our members will receive priority and you will be required to purchase a membership should you get a space. 41 spaces are available.

+ +

Requirements to attend that are non-negotiable: +

+

+

If there is any doubt around what kit is needed then please find the pinned post on our Instagram page (@uon_rambling_hiking) or get in touch if you are still unsure.

+ +

SIGN UP: https://forms.gle/d5S29umDhimPmixw7

+ +{{< /generalInfo >}} + +{{< /walks >}} diff --git a/content/walks/the_edges/cover.jpg b/content/walks/the_edges/cover.jpg new file mode 100644 index 0000000..8d1bee1 Binary files /dev/null and b/content/walks/the_edges/cover.jpg differ diff --git a/content/walks/the_edges/index.md b/content/walks/the_edges/index.md new file mode 100644 index 0000000..2b3a7b2 --- /dev/null +++ b/content/walks/the_edges/index.md @@ -0,0 +1,35 @@ +--- +title: "The Edges" +date: 2024-10-27T09:00:00-00:00 +lng: "-1.628172643246567" +lat: "53.283987378613304" +ticket_link: "https://su.nottingham.ac.uk/events/id/6822-the-edges-hike" +--- + +{{< walks >}} +{{< generalInfo >}} + +{{< sundayWalkInfo >}} + +{{< /generalInfo >}} + +{{% walk name="Walk 1" os="https://explore.osmaps.com/route/23775951/the-edges-walk-1--october-2024-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 2" os="https://explore.osmaps.com/route/23776478/the-edges-walk-2--october-2024-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 3" os="https://explore.osmaps.com/route/23776211/the-edges-walk-3--october-2024-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 4" os="https://explore.osmaps.com/route/23779578/the-edges-walk-4--october-2024-fionn"%}} + +{{% /walk %}} + +{{< /walks >}} \ No newline at end of file diff --git a/content/walks/the_roaches/cover.jpg b/content/walks/the_roaches/cover.jpg new file mode 100644 index 0000000..9f9f7c5 Binary files /dev/null and b/content/walks/the_roaches/cover.jpg differ diff --git a/content/walks/the_roaches/index.md b/content/walks/the_roaches/index.md new file mode 100644 index 0000000..9b800b9 --- /dev/null +++ b/content/walks/the_roaches/index.md @@ -0,0 +1,45 @@ +--- +title: "The Roaches" +lng: "-2" +lat: "53.1713" +date: 2025-03-23T09:00:00+01:00 +ticket_link: "https://su.nottingham.ac.uk/events/id/7538-the-roaches-sunday-hike" +--- + + +{{< walks >}} +{{< generalInfo >}} + +{{< sundayWalkInfo >}} + +{{< /generalInfo >}} + +{{% walk name="Walk 1" os="https://explore.osmaps.com/route/25764850/the-roaches-walk-1--march-2025-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 2" os="https://explore.osmaps.com/route/20611358/the-roaches-walk-2--march-2025-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 3" os="https://explore.osmaps.com/route/25200113/the-roaches-walk-3--march-2025-fionn"%}} + + +{{% /walk %}} + + +{{% walk name="Walk 4" os="https://explore.osmaps.com/route/25200041/the-roaches-walk-4--march-2025-fionn"%}} + + +{{% /walk %}} + + +{{% walk name="Walk 5" os="https://explore.osmaps.com/route/25199960/the-roaches-walk-5--march-2025-fionn"%}} + + +{{% /walk %}} + + +{{< /walks >}} \ No newline at end of file diff --git a/content/walks/tideswell/cover.jpg b/content/walks/tideswell/cover.jpg new file mode 100644 index 0000000..13073a8 Binary files /dev/null and b/content/walks/tideswell/cover.jpg differ diff --git a/content/walks/tideswell/index.md b/content/walks/tideswell/index.md new file mode 100644 index 0000000..b45bf23 --- /dev/null +++ b/content/walks/tideswell/index.md @@ -0,0 +1,37 @@ +--- +title: "Tideswell (Just Play)" +date: 2025-02-02T09:00:00-00:00 +lng: "-1.7746933039048571" +lat: "53.277215580626326" +ticket_link: "https://su.nottingham.ac.uk/events/id/7519-tideswell-sunday-hike" +--- + +{{< walks >}} +{{< generalInfo >}} + +{{< sundayWalkInfo >}} + +{{< /generalInfo >}} + +{{% walk name="Walk 1" os="https://explore.osmaps.com/route/24864636/tideswell-walk-1--february-2025-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 2" os="https://explore.osmaps.com/route/24864529/tideswell-walk-2--february-2025-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 3" os="https://explore.osmaps.com/route/24864711/tideswell-walk-3--february-2025-fionn"%}} + + +{{% /walk %}} + +{{% walk name="Walk 4" os="https://explore.osmaps.com/route/24865339/tideswell-walk-4--february-2025-fionn"%}} + + +{{% /walk %}} + + +{{< /walks >}} \ No newline at end of file diff --git a/content/walks/wollaton/cover.jpg b/content/walks/wollaton/cover.jpg new file mode 100644 index 0000000..1154247 Binary files /dev/null and b/content/walks/wollaton/cover.jpg differ diff --git a/content/walks/wollaton/index.md b/content/walks/wollaton/index.md new file mode 100644 index 0000000..e73ee95 --- /dev/null +++ b/content/walks/wollaton/index.md @@ -0,0 +1,6 @@ +--- +title: "Wollaton (Welfare)" +date: 2025-01-12T10:00:00-00:00 +lng: "-1.2099768818228345" +lat: "52.948222983914825" +--- \ No newline at end of file diff --git a/content/walks/wollaton2/cover.jpg b/content/walks/wollaton2/cover.jpg new file mode 100644 index 0000000..1154247 Binary files /dev/null and b/content/walks/wollaton2/cover.jpg differ diff --git a/content/walks/wollaton2/index.md b/content/walks/wollaton2/index.md new file mode 100644 index 0000000..c25a9e3 --- /dev/null +++ b/content/walks/wollaton2/index.md @@ -0,0 +1,6 @@ +--- +title: "Wollaton (Welfare)" +date: 2025-01-19T10:00:00-00:00 +lng: "-1.2099768818228345" +lat: "52.948222983914825" +--- \ No newline at end of file diff --git a/data/committee.yml b/data/committee.yml index 6ab3f88..eeccee5 100644 --- a/data/committee.yml +++ b/data/committee.yml @@ -1,41 +1,160 @@ -members: - - identifier: president - title: President - name: Dan Lee - image: /img/profiles/Dan-min.jpg - - identifier: treasurer - title: Treasurer - name: Amy Hopper - image: /img/profiles/Amy-min.jpg - - identifier: gensec - title: General Secretary - name: Holly Salaman - image: /img/profiles/Holly-min.jpg - - identifier: saftey - title: Safety Officer - name: Maddy Flynn - image: /img/profiles/Maddy-min.jpg - - identifier: ramble - title: Ramble Secretary - name: Fionn Mackie - image: /img/profiles/Fionn-min.jpg - - identifier: social - title: Social Secretary - name: Hafsa Sheikh - image: /img/profiles/Hafsa-min.jpg - - identifier: publicity - title: Publicity Officer - name: Theo Smith - image: /img/profiles/Theo-min.jpg - - identifier: kit - title: Kit Secretary - name: Lily Sconce - image: /img/profiles/Lilly-min.jpg - - identifier: welfare - title: Welfare Officer - name: Ella McLeod - image: /img/profiles/Ella-min.jpg - - identifier: vicepresident - title: Vice President - name: Rammy - image: /img/profiles/rammy.jpeg \ No newline at end of file +active: + - identifier: president + title: President + short_title: Pres + name: Jasmine Allan + contact: president@ramsoc.co.uk + image: /img/profiles/25/Jasmine.jpg + - identifier: vicepresident + title: Vice President + short_title: VP + name: Theo Smith + contact: vice-president@ramsoc.co.uk + image: /img/profiles/25/Theo.jpg + - identifier: treasurer + title: Treasurer + short_title: Treasurer + name: Jack Downing + contact: treasurer@ramsoc.co.uk + image: /img/profiles/25/Jack.jpg + - identifier: gensec + title: General Secretary + short_title: GenSec + name: Luis Faulkner + contact: secretary@ramsoc.co.uk + image: /img/profiles/25/Luis.jpg + - identifier: saftey + title: Safety Officer + short_title: Safety + name: Harry Broadbelt + contact: safety@ramsoc.co.uk + image: /img/profiles/25/Harry.jpg + - identifier: ramble + title: Ramble Secretary + short_title: Ramble + name: Greg Dexter + contact: ramble@ramsoc.co.uk + image: /img/profiles/rammy.jpeg + - identifier: social + title: Social Secretary + short_title: Social + name: Maya Nichols + contact: social@ramsoc.co.uk + image: /img/profiles/rammy.jpeg + - identifier: publicity + title: Publicity Officer + short_title: Publicity + name: Matthew Plunkett + contact: publicity@ramsoc.co.uk + image: /img/profiles/25/Matthew.jpg + - identifier: kit + title: Kit Officer + short_title: Kit + name: Maddie Fletcher + contact: kit@ramsoc.co.uk + image: /img/profiles/25/Maddy.jpg + - identifier: welfare + title: Welfare Officer + short_title: Welfare + name: Hannah Insley + contact: welfare@ramsoc.co.uk + image: /img/profiles/25/Hannah.jpg + - identifier: trip + title: Trip Officer + short_title: Trip Sec + name: Karol Kukula + contact: trip-sec@ramsoc.co.uk + image: /img/profiles/25/Karol.jpg +twentyfour: + - identifier: president + title: President + short_title: Pres + name: Theo Smith + image: /img/profiles/24/Theo.jpg + - identifier: vicepresident + title: Vice President + short_title: VP + name: Lewis Wilson + image: /img/profiles/24/Lewis.jpg + - identifier: treasurer + title: Treasurer + short_title: Treasurer + name: Rhiannon Bradley + image: /img/profiles/24/Rhiannon.jpg + - identifier: gensec + title: General Secretary + short_title: GenSec + name: Lily Sconce + image: /img/profiles/24/Lily.jpg + - identifier: saftey + title: Safety Officer + short_title: Safety + name: Joe Flack + contact: safety@ramsoc.co.uk + image: /img/profiles/24/Joe.jpg + - identifier: ramble + title: Ramble Secretary + short_title: Ramble + name: Fionn Mackie + image: /img/profiles/24/Fionn.jpg + - identifier: social + title: Social Secretary + short_title: Social + name: Simon Beattie + image: /img/profiles/24/Simon.jpg + - identifier: publicity + title: Publicity Officer + short_title: Publicity + name: Greg Dexter + image: /img/profiles/24/Greg.jpg + - identifier: kit + title: Kit Secretary + short_title: Kit + name: Karol Kukula + image: /img/profiles/24/Karol.jpg + - identifier: welfare + title: Welfare Officer + short_title: Welfare + name: Izzy Redpath + image: /img/profiles/24/Izzy.jpg +twentythree: + - identifier: president + title: President + name: Dan Lee + image: /img/profiles/Dan.jpg + - identifier: vicepresident + title: Vice President + name: Lewis Wilson + image: /img/profiles/23/Lewis.jpg + - identifier: treasurer + title: Treasurer + name: Amy Hopper + image: /img/profiles/23/Amy.jpg + - identifier: gensec + title: General Secretary + name: Holly Salaman + image: /img/profiles/23/Holly-min.jpg + - identifier: saftey + title: Safety Officer + name: Maddy Flynn + image: /img/profiles/23/Maddy-min.jpg + - identifier: ramble + title: Ramble Secretary + name: Fionn Mackie + image: /img/profiles/23/Fionn-min.jpg + - identifier: social + title: Social Secretary + name: Hafsa Sheikh + image: /img/profiles/23/Hafsa-min.jpg + - identifier: publicity + title: Publicity Officer + name: Theo Smith + image: /img/profiles/23/Theo-min.jpg + - identifier: kit + title: Kit Secretary + name: Lily Sconce + image: /img/profiles/23/Lilly-min.jpg + - identifier: welfare + title: Welfare Officer + name: Ella McLeod + image: /img/profiles/23/Ella-min.jpg \ No newline at end of file diff --git a/hugo.toml b/hugo.toml index cbd392f..87e5fcb 100644 --- a/hugo.toml +++ b/hugo.toml @@ -1,4 +1,4 @@ -baseURL = 'http://ramsocdev.danlee.uk/' +baseURL = 'https://ramsoc.co.uk' languageCode = 'en-us' title = 'Rambling & Hiking' DefaultContentLanguage = "en" @@ -15,7 +15,7 @@ canonifyURLs = true author = "Rambling & Hiking" github = "https://github.com/UoN-Rambling-Hiking" sitename = "Rambling & Hiking" - description = 'The University of Nottingham Rambling & Hiking Club. We run weekly walks, socials and trips away.' + description = 'RAMSOC, the University of Nottinghams Rambling & Hiking Club. We run weekly walks, socials and rips away. One of the universitys oldest and most active clubs.' title = 'Rambling & Hiking' images = ['img/banner.jpg'] @@ -35,9 +35,6 @@ canonifyURLs = true [[menu.main]] name = "About" weight = 3 - [[menu.main]] - name = "Gear" - weight = 4 [outputs] @@ -59,4 +56,7 @@ canonifyURLs = true [sitemap] changeFreq = '' filename = 'sitemap.xml' - priority = -1 \ No newline at end of file + priority = -1 + +[markup.goldmark.renderer] +unsafe= true \ No newline at end of file diff --git a/static/files/election_roles.pdf b/static/files/election_roles.pdf new file mode 100644 index 0000000..185fa33 Binary files /dev/null and b/static/files/election_roles.pdf differ diff --git a/static/img/90/banner.svg b/static/img/90/banner.svg new file mode 100644 index 0000000..f64c34a --- /dev/null +++ b/static/img/90/banner.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + 90 Y + + + ears + + + + + + + 1934-2024 + + + + + + diff --git a/static/img/90/cosy_club.png b/static/img/90/cosy_club.png new file mode 100644 index 0000000..ec09672 Binary files /dev/null and b/static/img/90/cosy_club.png differ diff --git a/static/img/90/edale.jpg b/static/img/90/edale.jpg new file mode 100644 index 0000000..1a7832e Binary files /dev/null and b/static/img/90/edale.jpg differ diff --git a/static/img/90/logo.png b/static/img/90/logo.png new file mode 100644 index 0000000..4381434 Binary files /dev/null and b/static/img/90/logo.png differ diff --git a/static/img/90/merch/DSC_2672.jpg b/static/img/90/merch/DSC_2672.jpg new file mode 100644 index 0000000..e2056ca Binary files /dev/null and b/static/img/90/merch/DSC_2672.jpg differ diff --git a/static/img/90/merch/DSC_2705.jpg b/static/img/90/merch/DSC_2705.jpg new file mode 100644 index 0000000..64c6728 Binary files /dev/null and b/static/img/90/merch/DSC_2705.jpg differ diff --git a/static/img/90/merch/DSC_2724.jpg b/static/img/90/merch/DSC_2724.jpg new file mode 100644 index 0000000..46ca960 Binary files /dev/null and b/static/img/90/merch/DSC_2724.jpg differ diff --git a/static/img/90/merch/DSC_2729.jpg b/static/img/90/merch/DSC_2729.jpg new file mode 100644 index 0000000..d5d31e0 Binary files /dev/null and b/static/img/90/merch/DSC_2729.jpg differ diff --git a/static/img/90/merch/DSC_2738.jpg b/static/img/90/merch/DSC_2738.jpg new file mode 100644 index 0000000..62844cd Binary files /dev/null and b/static/img/90/merch/DSC_2738.jpg differ diff --git a/static/img/90/merch/dimensions.png b/static/img/90/merch/dimensions.png new file mode 100644 index 0000000..391e3c5 Binary files /dev/null and b/static/img/90/merch/dimensions.png differ diff --git a/static/img/90/old_dpm.jpg b/static/img/90/old_dpm.jpg new file mode 100644 index 0000000..f3dac20 Binary files /dev/null and b/static/img/90/old_dpm.jpg differ diff --git a/static/img/RHFunny01.jpg b/static/img/RHFunny01.jpg new file mode 100644 index 0000000..98f9c2f Binary files /dev/null and b/static/img/RHFunny01.jpg differ diff --git a/static/img/RHFunny01_old.jpg b/static/img/RHFunny01_old.jpg new file mode 100644 index 0000000..3a7e089 Binary files /dev/null and b/static/img/RHFunny01_old.jpg differ diff --git a/static/img/RHFunny02.jpg b/static/img/RHFunny02.jpg new file mode 100644 index 0000000..eee4634 Binary files /dev/null and b/static/img/RHFunny02.jpg differ diff --git a/static/img/RHFunny02_old.jpg b/static/img/RHFunny02_old.jpg new file mode 100644 index 0000000..f2c2c28 Binary files /dev/null and b/static/img/RHFunny02_old.jpg differ diff --git a/static/img/bus_route.jpg b/static/img/bus_route.jpg index e991c63..e9e5f07 100644 Binary files a/static/img/bus_route.jpg and b/static/img/bus_route.jpg differ diff --git a/static/img/elections.png b/static/img/elections.png new file mode 100644 index 0000000..2717ecc Binary files /dev/null and b/static/img/elections.png differ diff --git a/static/img/email_content/leading.jpg b/static/img/email_content/leading.jpg new file mode 100644 index 0000000..c3ea2e9 Binary files /dev/null and b/static/img/email_content/leading.jpg differ diff --git a/static/img/email_content/newsletter.png b/static/img/email_content/newsletter.png new file mode 100644 index 0000000..bca816b Binary files /dev/null and b/static/img/email_content/newsletter.png differ diff --git a/static/img/email_content/social.jpg b/static/img/email_content/social.jpg new file mode 100644 index 0000000..6b72ab9 Binary files /dev/null and b/static/img/email_content/social.jpg differ diff --git a/static/img/email_content/weekly_update.png b/static/img/email_content/weekly_update.png new file mode 100644 index 0000000..8f2722a Binary files /dev/null and b/static/img/email_content/weekly_update.png differ diff --git a/static/img/hero.jpg b/static/img/hero.jpg index a569fb9..5872606 100644 Binary files a/static/img/hero.jpg and b/static/img/hero.jpg differ diff --git a/static/img/hero.webp b/static/img/hero.webp new file mode 100644 index 0000000..d0fffbe Binary files /dev/null and b/static/img/hero.webp differ diff --git a/static/img/landing/lakes_group.jpeg b/static/img/landing/lakes_group.jpeg new file mode 100644 index 0000000..351d582 Binary files /dev/null and b/static/img/landing/lakes_group.jpeg differ diff --git a/static/img/landing/landing1.jpg b/static/img/landing/landing1.jpg index b5a323e..753bd54 100644 Binary files a/static/img/landing/landing1.jpg and b/static/img/landing/landing1.jpg differ diff --git a/static/img/landing/landing3.jpg b/static/img/landing/landing3.jpg index ded1e8a..2e17b93 100644 Binary files a/static/img/landing/landing3.jpg and b/static/img/landing/landing3.jpg differ diff --git a/static/img/landing/landing4.jpg b/static/img/landing/landing4.jpg index 618aec8..b1edf4f 100644 Binary files a/static/img/landing/landing4.jpg and b/static/img/landing/landing4.jpg differ diff --git a/static/img/landing/landing5.jpeg b/static/img/landing/landing5.jpeg deleted file mode 100644 index 4e7967f..0000000 Binary files a/static/img/landing/landing5.jpeg and /dev/null differ diff --git a/static/img/landing/landing5.jpg b/static/img/landing/landing5.jpg new file mode 100644 index 0000000..f8a8ec5 Binary files /dev/null and b/static/img/landing/landing5.jpg differ diff --git a/static/img/landing/landing6.jpg b/static/img/landing/landing6.jpg index 155015e..617687e 100644 Binary files a/static/img/landing/landing6.jpg and b/static/img/landing/landing6.jpg differ diff --git a/static/img/landing/podcast_cover.jpg b/static/img/landing/podcast_cover.jpg new file mode 100644 index 0000000..7e921a2 Binary files /dev/null and b/static/img/landing/podcast_cover.jpg differ diff --git a/static/img/landing/xmas_meal.jpg b/static/img/landing/xmas_meal.jpg new file mode 100644 index 0000000..6419910 Binary files /dev/null and b/static/img/landing/xmas_meal.jpg differ diff --git a/static/img/profiles/Amy.jpg b/static/img/profiles/23/Amy-funny.jpg similarity index 100% rename from static/img/profiles/Amy.jpg rename to static/img/profiles/23/Amy-funny.jpg diff --git a/static/img/profiles/Amy-min.jpg b/static/img/profiles/23/Amy-min-funny.jpg similarity index 100% rename from static/img/profiles/Amy-min.jpg rename to static/img/profiles/23/Amy-min-funny.jpg diff --git a/static/img/profiles/23/Amy.jpg b/static/img/profiles/23/Amy.jpg new file mode 100644 index 0000000..1947837 Binary files /dev/null and b/static/img/profiles/23/Amy.jpg differ diff --git a/static/img/profiles/Ella-min.jpg b/static/img/profiles/23/Ella-min.jpg similarity index 100% rename from static/img/profiles/Ella-min.jpg rename to static/img/profiles/23/Ella-min.jpg diff --git a/static/img/profiles/Ella.jpg b/static/img/profiles/23/Ella.jpg similarity index 100% rename from static/img/profiles/Ella.jpg rename to static/img/profiles/23/Ella.jpg diff --git a/static/img/profiles/Fionn-min.jpg b/static/img/profiles/23/Fionn-min.jpg similarity index 100% rename from static/img/profiles/Fionn-min.jpg rename to static/img/profiles/23/Fionn-min.jpg diff --git a/static/img/profiles/Fionn.jpg b/static/img/profiles/23/Fionn.jpg similarity index 100% rename from static/img/profiles/Fionn.jpg rename to static/img/profiles/23/Fionn.jpg diff --git a/static/img/profiles/FionnFunny-min.jpg b/static/img/profiles/23/FionnFunny-min.jpg similarity index 100% rename from static/img/profiles/FionnFunny-min.jpg rename to static/img/profiles/23/FionnFunny-min.jpg diff --git a/static/img/profiles/FionnFunny.jpg b/static/img/profiles/23/FionnFunny.jpg similarity index 100% rename from static/img/profiles/FionnFunny.jpg rename to static/img/profiles/23/FionnFunny.jpg diff --git a/static/img/profiles/Hafsa-min.jpg b/static/img/profiles/23/Hafsa-min.jpg similarity index 100% rename from static/img/profiles/Hafsa-min.jpg rename to static/img/profiles/23/Hafsa-min.jpg diff --git a/static/img/profiles/Hafsa.jpg b/static/img/profiles/23/Hafsa.jpg similarity index 100% rename from static/img/profiles/Hafsa.jpg rename to static/img/profiles/23/Hafsa.jpg diff --git a/static/img/profiles/Holly-min.jpg b/static/img/profiles/23/Holly-min.jpg similarity index 100% rename from static/img/profiles/Holly-min.jpg rename to static/img/profiles/23/Holly-min.jpg diff --git a/static/img/profiles/Holly.jpg b/static/img/profiles/23/Holly.jpg similarity index 100% rename from static/img/profiles/Holly.jpg rename to static/img/profiles/23/Holly.jpg diff --git a/static/img/profiles/23/Lewis.jpg b/static/img/profiles/23/Lewis.jpg new file mode 100644 index 0000000..134a471 Binary files /dev/null and b/static/img/profiles/23/Lewis.jpg differ diff --git a/static/img/profiles/Lilly-min.jpg b/static/img/profiles/23/Lilly-min.jpg similarity index 100% rename from static/img/profiles/Lilly-min.jpg rename to static/img/profiles/23/Lilly-min.jpg diff --git a/static/img/profiles/Lilly.jpg b/static/img/profiles/23/Lilly.jpg similarity index 100% rename from static/img/profiles/Lilly.jpg rename to static/img/profiles/23/Lilly.jpg diff --git a/static/img/profiles/Maddy-min.jpg b/static/img/profiles/23/Maddy-min.jpg similarity index 100% rename from static/img/profiles/Maddy-min.jpg rename to static/img/profiles/23/Maddy-min.jpg diff --git a/static/img/profiles/Maddy.jpg b/static/img/profiles/23/Maddy.jpg similarity index 100% rename from static/img/profiles/Maddy.jpg rename to static/img/profiles/23/Maddy.jpg diff --git a/static/img/profiles/Theo-min.jpg b/static/img/profiles/23/Theo-min.jpg similarity index 100% rename from static/img/profiles/Theo-min.jpg rename to static/img/profiles/23/Theo-min.jpg diff --git a/static/img/profiles/Theo.jpg b/static/img/profiles/23/Theo.jpg similarity index 100% rename from static/img/profiles/Theo.jpg rename to static/img/profiles/23/Theo.jpg diff --git a/static/img/profiles/24/Fionn.jpg b/static/img/profiles/24/Fionn.jpg new file mode 100644 index 0000000..03295fd Binary files /dev/null and b/static/img/profiles/24/Fionn.jpg differ diff --git a/static/img/profiles/24/Greg.jpg b/static/img/profiles/24/Greg.jpg new file mode 100644 index 0000000..259c336 Binary files /dev/null and b/static/img/profiles/24/Greg.jpg differ diff --git a/static/img/profiles/24/Izzy.jpg b/static/img/profiles/24/Izzy.jpg new file mode 100644 index 0000000..b337981 Binary files /dev/null and b/static/img/profiles/24/Izzy.jpg differ diff --git a/static/img/profiles/24/Joe.jpg b/static/img/profiles/24/Joe.jpg new file mode 100644 index 0000000..8c964a8 Binary files /dev/null and b/static/img/profiles/24/Joe.jpg differ diff --git a/static/img/profiles/24/Karol.jpg b/static/img/profiles/24/Karol.jpg new file mode 100644 index 0000000..f9ca2e5 Binary files /dev/null and b/static/img/profiles/24/Karol.jpg differ diff --git a/static/img/profiles/24/Lewis.jpg b/static/img/profiles/24/Lewis.jpg new file mode 100644 index 0000000..7cb84ad Binary files /dev/null and b/static/img/profiles/24/Lewis.jpg differ diff --git a/static/img/profiles/24/Lily.jpg b/static/img/profiles/24/Lily.jpg new file mode 100644 index 0000000..d45f40e Binary files /dev/null and b/static/img/profiles/24/Lily.jpg differ diff --git a/static/img/profiles/24/Rhiannon.jpg b/static/img/profiles/24/Rhiannon.jpg new file mode 100644 index 0000000..b953ef9 Binary files /dev/null and b/static/img/profiles/24/Rhiannon.jpg differ diff --git a/static/img/profiles/24/Simon.jpg b/static/img/profiles/24/Simon.jpg new file mode 100644 index 0000000..ea8c704 Binary files /dev/null and b/static/img/profiles/24/Simon.jpg differ diff --git a/static/img/profiles/24/Theo.jpg b/static/img/profiles/24/Theo.jpg new file mode 100644 index 0000000..2559183 Binary files /dev/null and b/static/img/profiles/24/Theo.jpg differ diff --git a/static/img/profiles/25/Hannah.jpg b/static/img/profiles/25/Hannah.jpg new file mode 100644 index 0000000..068bbfc Binary files /dev/null and b/static/img/profiles/25/Hannah.jpg differ diff --git a/static/img/profiles/25/Harry.jpg b/static/img/profiles/25/Harry.jpg new file mode 100644 index 0000000..0bc41a5 Binary files /dev/null and b/static/img/profiles/25/Harry.jpg differ diff --git a/static/img/profiles/25/Jack.jpg b/static/img/profiles/25/Jack.jpg new file mode 100644 index 0000000..46cec5c Binary files /dev/null and b/static/img/profiles/25/Jack.jpg differ diff --git a/static/img/profiles/25/Jasmine.jpg b/static/img/profiles/25/Jasmine.jpg new file mode 100644 index 0000000..9372975 Binary files /dev/null and b/static/img/profiles/25/Jasmine.jpg differ diff --git a/static/img/profiles/25/Karol.jpg b/static/img/profiles/25/Karol.jpg new file mode 100644 index 0000000..fd1b359 Binary files /dev/null and b/static/img/profiles/25/Karol.jpg differ diff --git a/static/img/profiles/25/Luis.jpg b/static/img/profiles/25/Luis.jpg new file mode 100644 index 0000000..45628a4 Binary files /dev/null and b/static/img/profiles/25/Luis.jpg differ diff --git a/static/img/profiles/25/Maddy.jpg b/static/img/profiles/25/Maddy.jpg new file mode 100644 index 0000000..18609f3 Binary files /dev/null and b/static/img/profiles/25/Maddy.jpg differ diff --git a/static/img/profiles/25/Matthew.jpg b/static/img/profiles/25/Matthew.jpg new file mode 100644 index 0000000..8eda0f2 Binary files /dev/null and b/static/img/profiles/25/Matthew.jpg differ diff --git a/static/img/profiles/25/Theo.jpg b/static/img/profiles/25/Theo.jpg new file mode 100644 index 0000000..2559183 Binary files /dev/null and b/static/img/profiles/25/Theo.jpg differ diff --git a/static/img/profiles/Dan-standing.jpg b/static/img/profiles/Dan-standing.jpg new file mode 100644 index 0000000..1303f84 Binary files /dev/null and b/static/img/profiles/Dan-standing.jpg differ diff --git a/static/img/profiles/Dan.jpg b/static/img/profiles/Dan.jpg index 1303f84..b31c344 100644 Binary files a/static/img/profiles/Dan.jpg and b/static/img/profiles/Dan.jpg differ diff --git a/static/img/profiles/Theo-Nice.jpg b/static/img/profiles/Theo-Nice.jpg new file mode 100644 index 0000000..d515d44 Binary files /dev/null and b/static/img/profiles/Theo-Nice.jpg differ diff --git a/static/img/profiles/dan_xmas.jpg b/static/img/profiles/dan_xmas.jpg new file mode 100644 index 0000000..1f20191 Binary files /dev/null and b/static/img/profiles/dan_xmas.jpg differ diff --git a/static/img/square-facebook.png b/static/img/square-facebook.png new file mode 100644 index 0000000..baf9a06 Binary files /dev/null and b/static/img/square-facebook.png differ diff --git a/static/img/square-instagram.png b/static/img/square-instagram.png new file mode 100644 index 0000000..3f7dfc4 Binary files /dev/null and b/static/img/square-instagram.png differ diff --git a/themes/greenandgold/layouts/active/active.html b/themes/greenandgold/layouts/active/active.html index 62d390a..a08791f 100644 --- a/themes/greenandgold/layouts/active/active.html +++ b/themes/greenandgold/layouts/active/active.html @@ -5,8 +5,8 @@ {{ range $events}}
- - + + + + diff --git a/themes/greenandgold/layouts/anniversary/signup.html b/themes/greenandgold/layouts/anniversary/signup.html new file mode 100644 index 0000000..7c137c6 --- /dev/null +++ b/themes/greenandgold/layouts/anniversary/signup.html @@ -0,0 +1,346 @@ + + +{{- partial "head.html" . -}} + + + + + +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/greenandgold/layouts/calendar/calendar.html b/themes/greenandgold/layouts/calendar/calendar.html index 26831de..d1a5058 100644 --- a/themes/greenandgold/layouts/calendar/calendar.html +++ b/themes/greenandgold/layouts/calendar/calendar.html @@ -6,7 +6,11 @@

Calendar


Event Overview

- +

Subscribing To Calendar