diff --git a/Client/src/app/components/home/home.component.html b/Client/src/app/components/home/home.component.html index 6ee356d..83ee669 100644 --- a/Client/src/app/components/home/home.component.html +++ b/Client/src/app/components/home/home.component.html @@ -79,39 +79,19 @@ + +
- +
-

Cowboy Carnival

+

No Service Tonight (6/21/2026)

- Come join us for Ranger Walkers Wild West Cowboy Carnival! -

-
-

- Family Fun -

-
-

- Games -

-
-

- Rides -

-
-

- Inflatables -

-
-

- Sunday, September 18 @ 11:00 AM -

-
-

- phone 406-494-5028 + Due to the change in schedule today (6/26/2026) we will not have our + regular Sunday Evening Service. We will have a Sunday afternoon service + at 1:00 PM.

diff --git a/Client/src/app/components/home/home.component.ts b/Client/src/app/components/home/home.component.ts index 630ba81..d5005ee 100644 --- a/Client/src/app/components/home/home.component.ts +++ b/Client/src/app/components/home/home.component.ts @@ -34,7 +34,7 @@ export class HomeComponent { public get showSpecial() : boolean { - let maxDate = new Date(2022,8,18,11); // September 18th 2018 -- Set the month one month behind since JavaScript dates are 0 based + let maxDate = new Date(2026,5,26,11); // September 18th 2018 -- Set the month one month behind since JavaScript dates are 0 based let now = new Date(); if (now.getFullYear() > maxDate.getFullYear()) return false; if (now.getFullYear() == maxDate.getFullYear()) {