Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ description = "A UC Berkeley student-led organization that aims to spread mathem

[[extra.sponsor_tiers]]
title = "Platinum Sponsor"
div_class = "flex gap-x-16 gap-y-4 flex-wrap justify-center items-center"
img_class = "max-h-12"
sponsors = [
{ alt = "Hudson River Trading", src = "assets/sponsors/hrt.png", href = "https://www.hudsonrivertrading.com/" },
]

[[extra.sponsor_tiers]]
title = "Diamond Sponsors"
div_class = "flex gap-x-16 gap-y-4 flex-wrap justify-center items-center"
img_class = "max-w-36 max-h-18"
sponsors = [
{ alt = "Citadel | Citadel Securities", src = "assets/sponsors/citadel.png", href = "https://www.citadel.com/" },
Expand All @@ -21,7 +23,8 @@ sponsors = [

[[extra.sponsor_tiers]]
title = "Gold Sponsors"
img_class = "max-w-64 max-h-12"
div_class = "flex gap-x-16 gap-y-4 flex-wrap justify-center items-center"
img_class = "max-w-48 max-h-12"
sponsors = [
{ alt = "Simons Institute", src = "assets/sponsors/simons.png", href = "https://simons.berkeley.edu/" },
{ alt = "Atomic Grader", src = "assets/sponsors/ag.svg", href = "https://atomicgrader.com/" },
Expand All @@ -30,11 +33,11 @@ sponsors = [

[[extra.sponsor_tiers]]
title = "Blue Sponsors & Friends of BMT"
class = "flex gap-x-4 gap-y-4 flex-wrap justify-center items-center"
div_class = "flex gap-x-8 gap-y-4 flex-wrap justify-center items-center"
img_class = "max-w-24 max-h-12"
sponsors = [
{ alt = "Mustang Math", src = "assets/sponsors/mmt.png", href = "https://mustangmath.com/" },
{ alt = "HMMT", src = "assets/sponsors/hmmt.webp", href = "https://hmmt.org/" },
{ alt = "HMMT", src = "assets/sponsors/hmmt.png", href = "https://hmmt.org/" },
{ alt = "Stanford Math Tournament", src = "assets/sponsors/smt.png", href = "https://www.stanfordmathtournament.com/" },
{ alt = "Carnegie Mellon Informatics and Mathematics Competition", src = "assets/sponsors/cmimc.png", href = "https://cmimc.math.cmu.edu/" },
{ alt = "Los Angeles Math Tournament", src = "assets/sponsors/lamt.png", href = "https://lamt.net/" },
Expand Down
Binary file added static/assets/sponsors/hmmt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed static/assets/sponsors/hmmt.webp
Binary file not shown.
2 changes: 1 addition & 1 deletion templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ <h2 class="font-bold text-2xl">2025–2026 Sponsors</h2>
{% endif %}

<p class="text-gray-500 text-center text-base">{{ tier.title }}</p>
<div class="flex gap-x-16 gap-y-4 flex-wrap justify-center items-center">
<div class="{{ tier.div_class }}">
{% for sponsor in tier.sponsors %}
<a href="{{ sponsor.href }}">
<img src="{{ sponsor.src }}" alt="{{ sponsor.alt }}" class="{{ sponsor.img_class | default(value=tier.img_class) }}">
Expand Down
Loading