From 630a2d650e09948462e5447a9ef2d4e83bf717c4 Mon Sep 17 00:00:00 2001 From: Oliver Ni Date: Sat, 14 Oct 2023 06:29:24 -0700 Subject: [PATCH] redesign home page events --- content/_index.md | 57 ++-------------------------------- templates/index.html | 74 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 76 insertions(+), 55 deletions(-) diff --git a/content/_index.md b/content/_index.md index 26440ea..9abb778 100644 --- a/content/_index.md +++ b/content/_index.md @@ -2,57 +2,6 @@ title = "Berkeley Math Tournament" +++ -# Berkeley Math Tournament 2023 - -## BMT (November 4th, 2023) - -Our live fall tournament offers teams of high school students the opportunity to -share their interest in mathematics with like-minded individuals and to get a -taste of the concepts studied in higher mathematics. Registration will be -opening soon, and look out for more information on satellite tournaments coming -soon! - -[More Information](/events/bmt-2023) - ---- - -# Berkeley mini Math Tournament 2023 - -{% grid(class="md:grid-cols-3") %} - -- #### April 15, 2023 - - ## BmMT - - Offered in the spring, this β€œmini” in-person tournament aims to instill an - appreciation for mathematics in teams of **advanced elementary or middle - school students** and to prepare them for future mathematical endeavors. - - Archive coming soon! - -- #### May 27, 2023 - - ## BmMT China - - BmMT China, hosted through our partner, ASDAN, includes **both the Chinese and - English translations**, and students outside of China who would prefer to - compete in BmMT China due to firewall or time zone preference are welcome to - do so. - - [ASDAN Website](http://seed-static.seedasdan.com/wordpress/2021/12/BmMT-ASDAN.png) - -- #### April 16, 2023 - - ## BmMT Toronto - - BmMT Toronto, hosted through our partner, University of Toronto Schools. We - are super excited to partner with UTS to offer BmMT in Canada and for students - who would like to compete closer to the East Coast. - - [UTS Website](https://math.utschools.ca/bmmt-global-toronto/) - -{% end %} - # Don’t miss out on contest news! Receive tournament announcements, registration deadlines, info on pre-tournament @@ -60,12 +9,10 @@ activities, and other math competition opportunities!
-
-
+
-
* indicates required
-
+
diff --git a/templates/index.html b/templates/index.html index 93faae1..7ed3dc2 100644 --- a/templates/index.html +++ b/templates/index.html @@ -17,6 +17,27 @@ {% endmacro %} +{# Macro for event cards #} + +{% macro event(name, date, description, href, class="") %} + +{% endmacro %} + {# =============================== #} {# = STARTING THE ACTUAL CONTENT = #} {# =============================== #} @@ -53,6 +74,59 @@
+{# Events section #} + +

Recent & Upcoming Events

+ +
+ {{ self::event( + class="col-span-4 bg-gradient-to-br shadow-lg from-orange-700 to-orange-900 text-white", + name="Berkeley Math Tournament 2023", + date="November 4, 2023", + href="/events/bmt-2023/", + description="Our live fall tournament offers teams of high school students the opportunity to share their interest in + mathematics with like-minded individuals and to get a taste of the concepts studied in higher mathematics." + ) }} + + {{ self::event( + class="col-span-2 bg-gradient-to-br from-slate-100 to-slate-300", + name="BMT China πŸ‡¨πŸ‡³", + date="December 2–3, 2023", + href="http://www.seedasdan.asia/en/bmt-en/", + description="Our partner ASDAN serves students in China. This tournament also includes + Chinese translations!" + ) }} + + {{ self::event( + class="col-span-6 bg-gradient-to-br shadow-lg from-cyan-700 to-cyan-900 text-white", + name="Berkeley mini Math Tournament 2023", + date="April 15, 2023", + href="/events/bmmt-2023/", + description="Our annual β€œmini” in-person tournament for middle school and advanced elementary school students + showcases the beauty and fun of mathematics through exciting formats like the Puzzle Round and Relay Round, preparing + them for future mathematical endeavors." + ) }} + + {{ self::event( + class="col-span-3 bg-gradient-to-br from-slate-100 to-slate-300", + name="BmMT Toronto πŸ‡¨πŸ‡¦", + date="April 16, 2023", + href="https://math.utschools.ca/bmmt-global-toronto/bmmt-global-toronto-schedule/", + description="We are super excited to partner with University of Toronto Schools to offer BmMT to students on the East + Coast and in Canada." + ) }} + + {{ self::event( + class="col-span-3 bg-gradient-to-br from-slate-100 to-slate-300", + name="BmMT China πŸ‡¨πŸ‡³", + date="May 27–28, 2023", + href="http://www.seedasdan.asia/en/bmmt-en/", + description="Hosted by our partner ASDAN, this satellite brings BmMT to students in China and other nearby regions." + ) }} +
+ +
+ {# Rest of content (rendered from markdown) #}