Skip to content

Commit

Permalink
Update year-round event handling to a collection and add 2023 winter/…
Browse files Browse the repository at this point in the history
…spring events.
  • Loading branch information
petroffc committed Dec 4, 2022
1 parent f9018ca commit e1ff7a5
Show file tree
Hide file tree
Showing 39 changed files with 689 additions and 93 deletions.
10 changes: 7 additions & 3 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ paginate: 5
paginate_path: about/news/page:num/
url: http://campworkcoeman.org
collections:
sahposts:
output: true
permalink: /scouting-at-home/:year/:month/:day/:title/
sahposts:
output: true
permalink: /scouting-at-home/:year/:month/:day/:title/
yrpevents:
output: true
permalink: /year-round-programs/events/:year/:month/:day/:title/
future: true
5 changes: 2 additions & 3 deletions _includes/announcement.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
<div class="col-sm-12">
<div id="announcement">
<div class="alert alert-warning">
<h3 class="list-group-item-heading">2022 Fall Programs at Camp Workcoeman</h3>
<p><em>18 October 2022</em> &mdash; <a href="https://campworkcoeman.org/scouts-bsa/year-round-programs/">Registration</a> for November's Sportman Merit Badge Day and Five Mile Hike and Orienteering Clinic closes at 11:59 PM on Monday, October 31.</p>
<p><em>13 August 2022</em> &mdash; A variety of day and weekend <a href="{{ site.url }}/year-round-programs/">Scouting programs</a> are planned for this fall at Camp Workcoeman. These activities include both <a href="{{ site.url }}/scouts-bsa/year-round-programs/">Scouts BSA</a> and <a href="{{ site.url }}/cub-scouts/year-round-programs/">Cub Scout</a> events as well as <a href="{{ site.url }}/about/news/2022/08/13/adult-scouter-trainings/">adult Scouter training</a> opportunities.</p>
<h3 class="list-group-item-heading">2023 Winter/Spring Programs at Camp Workcoeman</h3>
<p><em>4 December 2022</em> &mdash; A variety of day and weekend <a href="{{ site.url }}/year-round-programs/">Scouting programs</a> are planned for this winter and spring at Camp Workcoeman. These activities include both <a href="{{ site.url }}/scouts-bsa/year-round-programs/">Scouts BSA</a> and <a href="{{ site.url }}/cub-scouts/year-round-programs/">Cub Scout</a> events as well as <a href="{{ site.url }}/training/">adult Scouter training</a> opportunities.</p>
</div>
</div>
</div>
Expand Down
7 changes: 4 additions & 3 deletions _includes/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<li class="dropdown">
<div class="dropdown-toggle">Scouts BSA <b class="caret"></b></div>
<ul class="dropdown-menu">
<li><a href="{{ site.url }}/scouts-bsa/year-round-programs/">2022 Fall Programs</a></li>
<li><a href="{{ site.url }}/scouts-bsa/year-round-programs/">2023 Winter/Spring Programs</a></li>
<li><a href="{{ site.url }}/scouts-bsa/summer-programs/">Summer Programs</a></li>
<li><a href="{{ site.url }}/summer-camp/overnight-camping/">Overnight Camping</a></li>
<li><a href="{{ site.url }}/summer-camp/a-la-carte-programs/">À La Carte Programs</a></li>
Expand All @@ -52,15 +52,16 @@
<li class="dropdown">
<div class="dropdown-toggle">Cub Scouts <b class="caret"></b></div>
<ul class="dropdown-menu">
<li><a href="{{ site.url }}/cub-scouts/year-round-programs/">2022 Fall Programs</a></li>
<li><a href="{{ site.url }}/cub-scouts/year-round-programs/">2023 Winter/Spring Programs</a></li>
<li><a href="{{ site.url }}/cub-scouts/day-camp/">Cub Scout Day Camp</a></li>
<li><a href="{{ site.url }}/summer-camp/overnight-camping/">Overnight Camping</a></li>
<li><a href="{{ site.url }}/cub-scouts/fees/">Camp Fees</a></li>
<li><a href="{{ site.url }}/summer-camp/forms/">Forms</a></li>
<li><a href="{{ site.url }}/cub-scouts/register/">Register</a></li>
</ul>
</li>
<li><a href="{{ site.url }}/short-term-camping/">Short Term Camping</a></li>
<li><a href="{{ site.url }}/short-term-camping/">Campsite/Facility Reservations</a></li>
<li><a href="{{ site.url }}/training/">Training Opportunities</a></li>
<li class="dropdown">
<div class="dropdown-toggle">Get Involved <b class="caret"></b></div>
<ul class="dropdown-menu">
Expand Down
47 changes: 47 additions & 0 deletions _layouts/event-item.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{% include header.html %}
{% include navbar.html %}

<!-- Main content -->
<div class="container main">
{% include announcement.html %}
<div class="row">

<!-- Main column -->
<div class="col-sm-8 col-sm-push-4 col-lg-9 col-lg-push-3">

<ol class="breadcrumb">
<li><a href="{{ site.url }}/year-round-programs/">Year-Round Programs</a></li>
<li class="active">{{ page.title }}</li>
</ol>

<h1>{{ page.title }} &mdash; {{ page.date | date: "%B %e, %Y" }}</h1>

{% if page.tag contains 'scouts-bsa' %}<a type="button" href="{{ site.url }}/scouts-bsa/year-round-programs/" class="btn btn-danger btn-xs">Scouts BSA</a>{% endif %}
{% if page.tag contains 'cub-scouts' %}<a type="button" href="{{ site.url }}/cub-scouts/year-round-programs/" class="btn btn-primary btn-xs">Cub Scouts</a>{% endif %}
{% if page.tag contains 'training' %}<a type="button" href="{{ site.url }}/training/" class="btn btn-success btn-xs">Training</a>{% endif %}
{% capture nowunix %}{{'now' | date: '%s'}}{% endcapture %}
{% capture eventtime %}{{page.date | date: '%s'}}{% endcapture %}
{% if eventtime < nowunix %}<a type="button" href="{{ site.url }}/year-round-programs/" class="btn btn-info btn-xs">Past Event</a>{% endif %}
<p></p>

<div class="justify">
{{ content | bootstrapTables }}
</div>

<ul class="pager">
{% if page.previous %}
<li class="previous"><a href="{{ page.previous.url }}">&larr; {{ page.previous.title }}</a></li>
{% endif %}
{% if page.next %}
<li class="next"><a href="{{ page.next.url }}">{{ page.next.title }} &rarr;</a></li>
{% endif %}
</ul>

</div>

{% include sidebar.html %}

</div>
</div>

{% include footer.html %}
14 changes: 14 additions & 0 deletions _yrpevents/2022-09-09-introduction-to-outdoor-leader-skills.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
published: true
layout: event-item
title: Introduction to Outdoor Leaders Skills
tag: training
dates: September 9&ndash;11, 2022
---

Introduction to Outdoor Leaders Skills is required for adult Scouts BSA Troop & Venturing Crew Scouters. Working as patrols, this hands-on course provides adult Scouters the practical outdoor skills they need to lead Scouts in the out-of-doors.

Required course is Saturday 7:30 AM to Sunday 11:00 AM, with Friday overnight optional, but informative!

> %list-group%
> <a href="https://scoutingevent.com/066-56079" class="list-group-item">Register for Introduction to Outdoor Leader Skills</a>
11 changes: 11 additions & 0 deletions _yrpevents/2022-09-10-merit-badge-completion-day.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
published: true
layout: event-item
title: Merit Badge Completion Day
tag: scouts-bsa
---

Scouts will have the opportunity to finish any incomplete 'partial' merit badges during this program at Camp Workcoeman. Scouts must list the badges they would like to work on when registering. This is a morning program only, concluding at 12:00 PM; no meals are provided.

> %list-group%
> <a href="https://scoutingevent.com/066-56082" class="list-group-item">Register for Merit Badge Completion Day</a>
19 changes: 19 additions & 0 deletions _yrpevents/2022-09-10-nra-basic-course-in-rifle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
published: true
layout: event-item
title: NRA Instructor Training&colon; Basic Course in Rifle
tag: training
---

NRA Rifle or Shotgun Instructor training is being offered this fall at Camp Workcoeman in an effort to offer safe and challenging shooting sports activities at our camps. Scouters with an interest in becoming part of a council shooting sports team can become certified as an NRA Rifle or Shotgun Instructor.

Becoming a certified NRA Instructor in Rifle or Shotgun requires a three step process:

1. Basic Rifle or Shotgun Course
2. Basic Instructor Training (BIT)
3. NRA Rifle or Shotgun Instructor Training

Basic course in rifle runs Saturday, September 10, 2022 8:00 AM -- 6:00 PM. The fee is $125, which covers materials, manuals, notebooks, ammunition, targets, and lunch.

> %list-group%
> <a href="https://scoutingevent.com/066-61943" class="list-group-item">Register for NRA Instructor Training: Basic Course in Rifle</a>
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
published: true
layout: event-item
title: Level I Archery Training (Practical Component)
tag: training
---

This is the 'hands on' portion of the training necessary to become a Level I Archery Instructor---this includes lessons on how to properly set up a range, teach others how to shoot and techniques on best positioning, sites, etc.

To participate in this training, the online portion must be completed first and can be accessed via this [link](https://www.usarchery.org/coaches/become-a-coach/level-1-instructor-certification).

Participants in the 'practical' session on September 17^th must complete the online course beforehand and bring the certificate of completion with them to the training.

Training runs 9:00 AM -- 2:00 PM and costs $40. There is a limit of 16 participants.

> %list-group%
> <a href="https://scoutingevent.com/066-61484" class="list-group-item">Register for Level I Archery Training (Practical Component)</a>
19 changes: 19 additions & 0 deletions _yrpevents/2022-09-24-nra-basic-course-in-shotgun.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
published: true
layout: event-item
title: NRA Instructor Training&colon; Basic Course in Shotgun
tag: training
---

NRA Rifle or Shotgun Instructor training is being offered this fall at Camp Workcoeman in an effort to offer safe and challenging shooting sports activities at our camps. Scouters with an interest in becoming part of a council shooting sports team can become certified as an NRA Rifle or Shotgun Instructor.

Becoming a certified NRA Instructor in Rifle or Shotgun requires a three step process:

1. Basic Rifle or Shotgun Course
2. Basic Instructor Training (BIT)
3. NRA Rifle or Shotgun Instructor Training

Basic course in rifle runs Saturday, September 24, 2022 8:00 AM -- 6:00 PM. The fee is $125, which covers materials, manuals, notebooks, ammunition, targets, and lunch.

> %list-group%
> <a href="https://scoutingevent.com/066-61943" class="list-group-item">Register for NRA Instructor Training: Basic Course in Shotgun</a>
13 changes: 13 additions & 0 deletions _yrpevents/2022-09-30-webelos-woods.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
published: true
layout: event-item
title: Webelos Woods
tag: cub-scouts
dates: September 30&ndash;October 2, 2022
---

Registration is now open for a weekend of advancement, special programs and fun for Webelos and Arrow of Light Scouts. Den Leaders will be contacted beforehand to register their Scouts for adventure badges and other activities.

> %list-group%
> <a href="https://scoutingevent.com/066-webeloswoods2022" class="list-group-item">Register for Webelos Woods</a>
> <a href="{{ site.url }}/pdf/2022/2022-webelos-woods-program-guide.pdf" class="list-group-item">Webelos Woods Program Guide</a>
20 changes: 20 additions & 0 deletions _yrpevents/2022-10-04-nra-basic-instructor-training.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
published: true
layout: event-item
title: NRA Instructor Training&colon; Basic Instructor Training (BIT)
tag: training
dates: October 4 & 6, 2022
---

NRA Rifle or Shotgun Instructor training is being offered this fall at Camp Workcoeman in an effort to offer safe and challenging shooting sports activities at our camps. Scouters with an interest in becoming part of a council shooting sports team can become certified as an NRA Rifle or Shotgun Instructor.

Becoming a certified NRA Instructor in Rifle or Shotgun requires a three step process:

1. Basic Rifle or Shotgun Course
2. Basic Instructor Training (BIT)
3. NRA Rifle or Shotgun Instructor Training

Basic instructor training (BIT) runs Tuesday, October 4 & 6, 2022 6:00 PM -- 10:00 PM. Location is TBA. The fee is $60, which covers all materials.

> %list-group%
> <a href="https://scoutingevent.com/066-61943" class="list-group-item">Register for NRA Instructor Training: Basic Instructor Training (BIT)</a>
11 changes: 11 additions & 0 deletions _yrpevents/2022-10-08-cub-scout-outdoor-skills-experience.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
published: true
layout: event-item
title: Cub Scout Outdoor Skills Experience
tag: cub-scouts
---

This event is designed for Lion, Tiger, Wolf and Bear Scouts and provides them with the opportunity to complete outdoor skills requirements towards various adventure badges. Requirements completed will relate to campsite set up and selection, fishing, fire building and safety, map reading, and more. Lunch will be provided.

> %list-group%
> <a href="https://scoutingevent.com/066-60798" class="list-group-item">Register for Cub Scout Outdoor Skills Experience</a>
14 changes: 14 additions & 0 deletions _yrpevents/2022-10-08-trail-to-eagle-day.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
published: true
layout: event-item
title: Trail to Eagle Day
tag: scouts-bsa
---

This Program is meant to provide Scouts with the opportunity to earn at least a portion of a merit badge that is required to become an Eagle Scout. In addition to the merit badge class, there will also be a session where Scouts are taught about the Eagle Scout requirements, including the Eagle Service Project and, most importantly, leadership.

Merit badges offered include: Citizenship in the Nation, Citizenship in the World, Emergency Preparedness, First Aid, and Hiking.

> %list-group%
> <a href="https://scoutingevent.com/066-56090" class="list-group-item">Register for Trail to Eagle Day</a>
19 changes: 19 additions & 0 deletions _yrpevents/2022-10-29-nra-rifle-instructor-training.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
published: true
layout: event-item
title: NRA Rifle Instructor Training
tag: training
---

NRA Rifle or Shotgun Instructor training is being offered this fall at Camp Workcoeman in an effort to offer safe and challenging shooting sports activities at our camps. Scouters with an interest in becoming part of a council shooting sports team can become certified as an NRA Rifle or Shotgun Instructor.

Becoming a certified NRA Instructor in Rifle or Shotgun requires a three step process:

1. Basic Rifle or Shotgun Course
2. Basic Instructor Training (BIT)
3. NRA Rifle or Shotgun Instructor Training

NRA Rifle Instructor Training runs Saturday, October 29, 2022 8:00 AM -- 6:00 PM. The fee is $150, which covers instruction charts, manuels, notebooks, ammunition, targets, and lunch.

> %list-group%
> <a href="https://scoutingevent.com/066-61943" class="list-group-item">Register for NRA Rifle Instructor Training</a>
11 changes: 11 additions & 0 deletions _yrpevents/2022-11-05-five-mile-hike-and-orienteering-clinic.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
published: true
layout: event-item
title: Five Mile Hike and Orienteering Clinic
tag: scouts-bsa
---

This program focuses on hiking and orienteering requirements connected with the Second Class and First Class ranks, including completing a five mile hike through the back woods of Camp Workcoeman. The event runs 8:30 AM -- 4:30 PM and the $45 registration fee includes a trail lunch. Scouts will receive a sheet listing the requirements completed on this day to bring back to their troops.

> %list-group%
> <a href="https://scoutingevent.com/066-61138" class="list-group-item">Register for the Five Mile Hike and Orienteering Clinic</a>
19 changes: 19 additions & 0 deletions _yrpevents/2022-11-05-nra-shotgun-instructor-training.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
published: true
layout: event-item
title: NRA Shotgun Instructor Training
tag: training
---

NRA Rifle or Shotgun Instructor training is being offered this fall at Camp Workcoeman in an effort to offer safe and challenging shooting sports activities at our camps. Scouters with an interest in becoming part of a council shooting sports team can become certified as an NRA Rifle or Shotgun Instructor.

Becoming a certified NRA Instructor in Rifle or Shotgun requires a three step process:

1. Basic Rifle or Shotgun Course
2. Basic Instructor Training (BIT)
3. NRA Rifle or Shotgun Instructor Training

NRA Shotgun Instructor Training runs Saturday, November 5, 2022 8:00 AM -- 6:00 PM. The fee is $150, which covers instruction charts, manuels, notebooks, ammunition, targets, and lunch.

> %list-group%
> <a href="https://scoutingevent.com/066-61943" class="list-group-item">Register for NRA Shotgun Instructor Training</a>
11 changes: 11 additions & 0 deletions _yrpevents/2022-11-05-sportsman-merit-badge-day.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
published: true
layout: event-item
title: Sportsman Merit Badge Day
tag: scouts-bsa
---

This is an opportunity for Scouts to earn a sportsman related merit badge. The badges being offered are: Climbing, Archery, Rifle Shooting, Shotgun Shooting, and Sports. The program runs 8:30 AM -- 4:30 PM and the $45 registration fee includes lunch.

> %list-group%
> <a href="https://scoutingevent.com/066-56095" class="list-group-item">Register for Sportsman Merit Badge Day</a>
23 changes: 23 additions & 0 deletions _yrpevents/2023-01-21-range-safety-officer-training.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
published: true
layout: event-item
title: Range Safety Officer (RSO) Training
tag: training
---

NRA Rifle or Shotgun Instructor training is being offered this fall at Camp Workcoeman in an effort to offer safe and challenging shooting sports activities at our camps. Scouters with an interest in becoming part of a council shooting sports team can become certified as an NRA Rifle or Shotgun Instructor.

Becoming a certified NRA Instructor in Rifle or Shotgun requires a three step process:

1. Basic Rifle or Shotgun Course
2. Basic Instructor Training (BIT)
3. NRA Rifle or Shotgun Instructor Training

Operating a shooting range in Connecticut Rivers Council requires an NRA Instructor and a Range Safety Officer (RSO).

Anyone with interest in shooting sports is eligible to become a RSO. This training is not required to become a rifle or shotgun instructor and does not have a shooting component in the training.

Range Safety Officer (RSO) Training runs Saturday, January 21, 2023 8:00 AM -- 5:00 PM. The fee is $100. The snow date is January 28, 2023.

> %list-group%
> <a href="https://scoutingevent.com/066-61943" class="list-group-item">Register for Range Safety Officer (RSO) Training</a>
21 changes: 21 additions & 0 deletions _yrpevents/2023-01-28-stem-merit-badge-day.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
published: true
layout: event-item
title: STEM Merit Badge Day
tag: scouts-bsa
---

This Program is meant to provide Scouts with the opportunity to earn at least a portion of a merit badge that is connected with Science, Technology, Engineering, and Math. Information about any requirements needing to be done outside of the merit badge class will be provided in advance.

Check-in starts at 8:30 AM, with closing at 4:30 PM. Lunch will be provided.

Badges include:
Chemistry, Digital Technology, Nuclear Science, Photography, and Space Exploration

Cost: $45

Contact: Jeffrey Seiser, [[email protected]](mailto:[email protected])


> %list-group%
> <a href="https://scoutingevent.com/066-64283" class="list-group-item">Register for STEM Merit Badge Day</a>
18 changes: 18 additions & 0 deletions _yrpevents/2023-02-25-cub-blizzard.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
published: true
layout: event-item
title: Cub Scout Blizzard
tag: cub-scouts
---

This is an outdoor winter carnival for Cub Scouts, Webelos, and their families. Scouts will rotate through a series of activities with other Scouts from their pack based around winter fun in the outdoors. Programs may include sledding, snowman building, ice fishing, and more.

Check-in starts at 9:30 AM, with closing at 3:30 PM. All participants must come dressed appropriately for the weather. Participating Scouts will receive a commemorative patch. Lunch will be provided.

Cost: $15 per person (set up registrations for Scouts, adults, and siblings)

Contact: Jeffrey Seiser, [[email protected]](mailto:[email protected])


> %list-group%
> <a href="https://scoutingevent.com/066-64287" class="list-group-item">Register for Cub Scout Blizzard</a>
Loading

0 comments on commit e1ff7a5

Please sign in to comment.