blob: 11a9834340f775a801436b29363123c82a24c550 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{# Current or ongoing event #}
{% load static %}
<h2 class="title is-4">Current event</h2>
<div class="box">
<h2 class="title is-4"><a href="{% url "events:page" path="code-jams/10" %}">Code Jam 2023</a></h2>
<div class="columns is-3" style="--columnGap: 0.75rem;">
<div class="column">
<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 href="{% url "events:page" path="code-jams/10" %}" class="button is-link">
Join now
</a>
</div>
<div class="column">
<img src="/static/images/events/summer_code_jam_2023/banner3.png" alt="Code Jam 2023">
</div>
</div>
</div>
|