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
4 changes: 2 additions & 2 deletions content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ title = "Diamond Sponsors"
img_class = "max-w-36 max-h-18"
sponsors = [
{ alt = "Citadel | Citadel Securities", src = "assets/sponsors/citadel.png", href = "https://www.citadel.com/" },
{ alt = "Susquehanna", src = "assets/sponsors/susquehanna.png", href = "https://sig.com/", img_class = "max-w-48 max-h-18" },
{ alt = "Jane Street", src = "assets/sponsors/jane-street.svg", href = "https://www.janestreet.com/" },
{ alt = "blackpenredpen", src = "assets/sponsors/bprp.png", href = "https://www.youtube.com/c/blackpenredpen/" },
{ alt = "ContestDojo", src = "assets/sponsors/contestdojo.png", href = "https://contestdojo.com/" },
]

[[extra.sponsor_tiers]]
title = "Gold Sponsors"
img_class = "max-w-64 max-h-12"
sponsors = [
{ alt = "Atomic Grader", src = "assets/sponsors/ag.svg", href = "https://atomicgrader.com/" },
{ alt = "Susquehanna", src = "assets/sponsors/susquehanna.png", href = "https://sig.com/" },
{ alt = "ContestDojo", src = "assets/sponsors/contestdojo.png", href = "https://contestdojo.com/" },
]

[[extra.sponsor_tiers]]
Expand Down
2 changes: 1 addition & 1 deletion templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h2 class="font-bold text-2xl">2025–2026 Sponsors</h2>
<div class="flex gap-x-16 gap-y-4 flex-wrap justify-center items-center">
{% for sponsor in tier.sponsors %}
<a href="{{ sponsor.href }}">
<img src="{{ sponsor.src }}" alt="{{ sponsor.alt }}" class="{{ tier.img_class }}">
<img src="{{ sponsor.src }}" alt="{{ sponsor.alt }}" class="{{ sponsor.img_class | default(value=tier.img_class) }}">
</a>
{% endfor %}
</div>
Expand Down
Loading