Compare commits

...

4 Commits

Author SHA1 Message Date
Tara Wilson
79d866f484 Updating events
All checks were successful
Build / Build (push) Successful in 14s
Publish Docker Image / Build UI Artifact (release) Successful in 14s
Publish Docker Image / Publish Docker Image (release) Successful in 49s
Adding new cave outing pdf
Removing merit badge page
Removing old pdfs
2025-06-07 09:25:54 -04:00
Tara Wilson
16cc3a52a0 Fixing footer margin
All checks were successful
Build / Build (push) Successful in 13s
Publish Docker Image / Build UI Artifact (release) Successful in 15s
Publish Docker Image / Publish Docker Image (release) Successful in 23s
2025-05-03 13:13:23 -04:00
Tara Wilson
77e3dda1c5 Adding summer event information
All checks were successful
Build / Build (push) Successful in 13s
Publish Docker Image / Build UI Artifact (release) Successful in 14s
Publish Docker Image / Publish Docker Image (release) Successful in 41s
2025-05-03 13:07:10 -04:00
Tara Wilson
9e4fd09918 Adding PDFs for current events 2025-05-03 12:22:43 -04:00
12 changed files with 89 additions and 15 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 788 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,12 +1,80 @@
<div [class]="{'': !mobileService.isMobile(), 'mb5': mobileService.isMobile()}">
<article class="center mw5 mw6-ns hidden ba mv4"> <article class="center mw5 mw6-ns hidden ba mv4">
<h1 class="f4 bg-near-black white mv0 pv2 ph3">Weekend Camp Packing List</h1> <h1 class="f4 bg-near-black white mv0 pv2 ph3">General Troop Information</h1>
<div class="pa3 bt bg-light-blue"> <div class="pa3 bt bg-light-blue">
<p class="f6 f5-ns lh-copy measure mv0"> <p class="f6 f5-ns lh-copy measure mv0">
<a <a
href="https://docs.google.com/document/d/1al1knH02-Q8JXdgfq3pu9rHKHBGwfdjn8ATFFrvAfZk/edit?tab=t.0" href="https://docs.google.com/document/d/1al1knH02-Q8JXdgfq3pu9rHKHBGwfdjn8ATFFrvAfZk/edit?tab=t.0"
target="_blank"> target="_blank">
View the List General Weekend Packing List
</a> </a>
</p> </p>
</div> </div>
</article> </article>
<article class="center mw5 mw6-ns hidden ba mv4">
<h1 class="f4 bg-near-black white mv0 pv2 ph3">Summer Camp 2025</h1>
<div class="pa3 bt bg-light-blue">
<p class="f6 f5-ns lh-copy measure mv0">
<a
href="https://drive.google.com/file/d/1aRW5LI044sdhQ64d-dmaZycnDAzv90Nk/view"
target="_blank">
Summer Camp Adult Leader Guide
</a>
</p>
<p class="f6 f5-ns lh-copy measure mv0">
<a
href="upcoming-events/summer-camp-gear-drop-off.pdf"
target="_blank">
6/12/2025 - Summer Camp Gear Drop Off
</a>
</p>
<p class="f6 f5-ns lh-copy measure mv0">
<a
href="upcoming-events/summer-camp-2025.pdf"
target="_blank">
6/15/2025 - Summer Camp
</a>
</p>
</div>
</article>
<article class="center mw5 mw6-ns hidden ba mv4">
<h1 class="f4 bg-near-black white mv0 pv2 ph3">Upcoming Events</h1>
<div class="pa3 bt bg-light-blue">
<p class="f6 f5-ns lh-copy measure mv0">
<a
href="upcoming-events/upcoming-events.pdf"
target="_blank">
Upcoming Events May - August
</a>
</p>
<p class="f6 f5-ns lh-copy measure mv0">
<a
href="upcoming-events/july-board-of-review.pdf"
target="_blank">
7/10/2025 - Board of Review
</a>
</p>
<p class="f6 f5-ns lh-copy measure mv0">
<a
href="upcoming-events/cave-cavern-outing.pdf"
target="_blank">
7/26/2025 - Caving Event - Bring a friend
</a>
</p>
<p class="f6 f5-ns lh-copy measure mv0">
<a
href="upcoming-events/five-year-picnic.pdf"
target="_blank">
8/2/2025 - Court of Honor - 5 Year Celebration
</a>
</p>
<p class="f6 f5-ns lh-copy measure mv0">
<a
href="upcoming-events/fundamentals-of-fishing.pdf"
target="_blank">
8/30/2025 - Fundamentals of Fishing
</a>
</p>
</div>
</article>
</div>

View File

@ -1,4 +1,5 @@
import { Component } from '@angular/core'; import {Component, inject} from '@angular/core';
import {MobileService} from '../mobile.service';
@Component({ @Component({
selector: 'app-info', selector: 'app-info',
@ -7,5 +8,5 @@ import { Component } from '@angular/core';
styleUrl: './info.component.scss' styleUrl: './info.component.scss'
}) })
export class InfoComponent { export class InfoComponent {
public mobileService = inject(MobileService);
} }

View File

@ -8,6 +8,11 @@
<a class="link dim white dib mr3" [routerLink]="['fundraising']" title="Fundraising">Fundraising</a> <a class="link dim white dib mr3" [routerLink]="['fundraising']" title="Fundraising">Fundraising</a>
<a class="link dim white dib mr3" [routerLink]="['forms']" title="Forms">Forms</a> <a class="link dim white dib mr3" [routerLink]="['forms']" title="Forms">Forms</a>
<a class="link dim white dib mr3" [routerLink]="['info']" title="Info">Info</a> <a class="link dim white dib mr3" [routerLink]="['info']" title="Info">Info</a>
<a class="link dim white dib mr3" [routerLink]="['library']" title="Merit Badge Library">Library</a> <a class="link dim white dib mr3"
href="https://www.scouting.org/skills/merit-badges/all/"
target="_blank"
title="Merit Badge Library">
Merit Badges
</a>
</nav> </nav>
</header> </header>