diff options
author | 2024-07-03 22:42:54 +0530 | |
---|---|---|
committer | 2024-07-03 18:12:54 +0100 | |
commit | ad3609812d228c38ca62479b05e62f45ced0d2c9 (patch) | |
tree | d8ab046f64ae57614518094537eb35601478cbb0 /pydis_site/templates/events/current_event.html | |
parent | Merge pull request #1349 from python-discord/dependabot/pip/coverage-7.5.4 (diff) |
Update site for Code Jam 2024 (#1353)
Diffstat (limited to 'pydis_site/templates/events/current_event.html')
-rw-r--r-- | pydis_site/templates/events/current_event.html | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/pydis_site/templates/events/current_event.html b/pydis_site/templates/events/current_event.html index e099ccb6..8a9bed01 100644 --- a/pydis_site/templates/events/current_event.html +++ b/pydis_site/templates/events/current_event.html @@ -2,22 +2,28 @@ {# 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">Recent event</small> + <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="https://pyweek.org/37/">PyWeek 37</a></h2> + <h2 class="title is-4"><a href="{% url "events:page" path="code-jams/11" %}">Summer Code Jam 2024</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>March 17-24</span> + <span class="icon"><i class="fa-regular fa-calendar"></i></span><span>July 3 - August 1</span> </span> </p> </div> <div class="column"> - <img src="https://pyweek.readthedocs.io/en/latest/_static/pyweek.svg" style="border-radius: 10px;" alt="PyWeek logo"> + <img src="{% static "images/events/summer_code_jam_2024/banner.webp" %}" style="border-radius: 10px;" alt="Code Jam 2024"> </div> </div> - <p>A bi-annual game jam where participants write a game in Python in a week, either individually or as a team. The theme is voted by the competitors prior to the challenge, and the entries are also judged by the competitors after the challenge.</p> - <a class="button is-primary" href="https://pyweek.org/37/"> + <div class="notification is-success"> + The <strong>2024 Summer Code Jam</strong> is currently underway and you can still enter! + <strong>The qualifier is open until July 10</strong>; check out the details <a href="{% url "events:page" path="code-jams/11" %}">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/11" %}"> <span class="icon-text"> <span>Learn more</span><span class="icon"><i class="fa-solid fa-arrow-right"></i></span> </span> |