aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/templates/events/current_event.html
blob: e099ccb6c8dbd72e2a2b32fac7f5a0d2c836c3da (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
{% 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">Recent 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>
            <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>
            </p>
        </div>
        <div class="column">
            <img src="https://pyweek.readthedocs.io/en/latest/_static/pyweek.svg" style="border-radius: 10px;" alt="PyWeek logo">
        </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/">
        <span class="icon-text">
            <span>Learn more</span><span class="icon"><i class="fa-solid fa-arrow-right"></i></span>
        </span>
    </a>
</div>