From eba854600faa459081c0c179442a20bb2687aab6 Mon Sep 17 00:00:00 2001 From: Jon Andre Briones Date: Tue, 9 Dec 2025 15:49:08 -0800 Subject: [PATCH 1/2] fix: change mountain madness 2025 to 2026 --- public/madness/{2025 => 2026}/index.css | 0 public/madness/{2025 => 2026}/index.html | 8 ++++---- 2 files changed, 4 insertions(+), 4 deletions(-) rename public/madness/{2025 => 2026}/index.css (100%) rename public/madness/{2025 => 2026}/index.html (98%) diff --git a/public/madness/2025/index.css b/public/madness/2026/index.css similarity index 100% rename from public/madness/2025/index.css rename to public/madness/2026/index.css diff --git a/public/madness/2025/index.html b/public/madness/2026/index.html similarity index 98% rename from public/madness/2025/index.html rename to public/madness/2026/index.html index fd88076..19ec5d1 100755 --- a/public/madness/2025/index.html +++ b/public/madness/2026/index.html @@ -1,7 +1,7 @@ - Mountain Madness 2024 + Mountain Madness 2026 @@ -26,7 +26,7 @@

The CSSS presents...

Mountain Madness

-

Feb 28th - March 1st, 2025

+

Feb 28th - March 1st, 2026

at the Simon Fraser University Burnaby Mountain Campus

Coming Soon @@ -172,7 +172,7 @@

- + @@ -259,7 +259,7 @@

- + From fbccd989df757b26ef9098477406b772f947f199 Mon Sep 17 00:00:00 2001 From: Jon Andre Briones Date: Tue, 9 Dec 2025 15:51:55 -0800 Subject: [PATCH 2/2] update: event archive years --- src/app/pages/event-archives/events-archive.data.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/pages/event-archives/events-archive.data.ts b/src/app/pages/event-archives/events-archive.data.ts index 8baf5b0..7836da5 100644 --- a/src/app/pages/event-archives/events-archive.data.ts +++ b/src/app/pages/event-archives/events-archive.data.ts @@ -1,9 +1,11 @@ +// Years should be inserted from newest -> oldest +// Add to these once the event is over export const FROSH_YEARS = [ - 2024, 2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012 + 2025, 2024, 2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012 ] as const; -export const FALL_HACKS_YEARS = [2024, 2020] as const; +export const FALL_HACKS_YEARS = [2025, 2024, 2020] as const; -export const TECH_FAIR_YEARS = [2024, 2023, 2022] as const; +export const TECH_FAIR_YEARS = [2025, 2024, 2023, 2022] as const; export const MOUNTAIN_MADNESS_YEARS = [2024, 2023, 2022, 2021, 2020, 2019] as const;