blob: 3e62c83e93360ae3b2ff848b1597ad10c2822202 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{% load static %}
{# Current/next event to promote #}
<div class="box has-background-warning-light" style="padding: 2rem; padding-top: .75rem; margin-top: 2rem;">
<small class="has-text-grey">Upcoming event</small>
<div class="columns is-3 mt-1" style="--columnGap: 0.75rem;">
<div class="column">
<h2 class="title is-4"><a href="{% url "events:page" path="code-jams/11" %}">Summer Code Jam 2025</a></h2>
<p class="subtitle is-6" style="margin-top: -.75rem;">
<span class="icon-text">
<span class="icon"><i class="fa-regular fa-calendar"></i></span><span>August 7 - August 22</span>
</span>
</p>
</div>
<div class="column">
<img src="{% static "images/events/summer_code_jam_2025/banner_with_dates.png" %}" style="border-radius: 10px;" alt="Code Jam 2025">
</div>
</div>
<div class="notification is-success">
The <strong>2025 Summer Code Jam</strong> is currently underway and you can still enter!
<strong>The qualifier is open until July 31</strong>; check out the details <a href="{% url "events:page" path="code-jams/12" %}">here</a>.
</div>
<p>Once a year we host a code jam for members of our server to participate in. The code jam is an event where we place you
in a team with 5 other random server members. You then have 11 days to code some sort of application or program in Python.
Your program must use the specified technology/framework and incorporate the theme chosen by the server.</p>
<a class="button is-primary" href="{% url "events:page" path="code-jams/12" %}">
<span class="icon-text">
<span>Learn more</span><span class="icon"><i class="fa-solid fa-arrow-right"></i></span>
</span>
</a>
</div>
|