aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/templates/events/main_events.html
blob: 2bd602abc38deae85d73a9cf42d60d33a537a420 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{% load static %}

<div class="has-text-centered">
    <h2 class="title is-4">Annual events</h2>
</div>
<br>

{# These events are sorted in the desired (arbitrary) order, such as priority #}
<div class="event-gallery" id="main-events-section">
    <div class="card">
        <span class="colored-line has-background-primary"></span>
        <div class="card-content">
            <h2 class="title is-4"><a href="{% url "events:page" path="code-jams" %}">Code Jams</a></h2>
            <p class="subtitle is-7 has-text-grey">
                <span class="icon-text">
                    <span class="icon date-icon"><i class="fa-regular fa-calendar"></i></span>
                    <span>July to August</span>
                </span>
            </p>
            <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>
        </div>
    </div>
    <div class="card">
        <div class="card-image">
            <img class="light-image" src="/static/images/events/gallery/pyweek.png" alt="PyWeek logo">
            <img class="dark-image" src="/static/images/events/gallery/pyweek_dark.png" alt="PyWeek logo">
        </div>
        <div class="card-content">
            <h2 class="title is-4"><a href="{% url "events:page" path="pyweek" %}">PyWeek</a></h2>
            <p class="subtitle is-7 has-text-grey">
                <span class="icon-text">
                    <span class="icon date-icon"><i class="fa-regular fa-calendar"></i></span>
                    <span>March & September</span>
                </span>
            </p>
            <p>For the past 15 years, PyWeek has been running a bi-annual game jam for the Python language. As of 2020, we are excited to say we are officially partnered with PyWeek to co-run these events.</p>
        </div>
    </div>
    <div class="card">
        <div class="card-image">
            <img src="/static/images/events/gallery/adventofcode.png" alt="Server icon for AoC">
        </div>
        <div class="card-content">
            <h2 class="title is-4"><a href="{% url "events:page" path="adventofcode" %}">Advent of code</a></h2>
            <p class="subtitle is-7 has-text-grey">
                <span class="icon-text">
                    <span class="icon date-icon"><i class="fa-regular fa-calendar"></i></span>
                    <span>December</span>
                </span>
            </p>
            <p>An advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like, including Python. The puzzles start off easy and gradually get more difficult, all while revealing a fun little story that is appropriate for some seasons more than others. Puzzles are posted every day as they come, and you'll be able to discuss your solutions for each puzzle in dedicated threads.</p>
        </div>
    </div>
    <div class="card">
        <div class="card-image">
            <img src="/static/images/events/gallery/adventofcode.png" alt="Server icon for AoC">
        </div>
        <div class="card-content">
            <h2 class="title is-4"><a href="{% url "events:page" path="revivalofcode" %}">Revival of Code</a></h2>
            <p class="subtitle is-7 has-text-grey">
                <span class="icon-text">
                    <span class="icon date-icon"><i class="fa-regular fa-calendar"></i></span>
                    <span>July to August</span>
                </span>
            </p>
            <p>Revival of Code is a Python Discord hosted event where we release old Advent of Code puzzles from a previous year. Puzzles are for a variety of skill sets and skill levels that can be solved in any programming language you like, including Python. They will be posted every other day, and you'll be able to discuss your solutions in dedicated threads.</p>
        </div>
    </div>
    <div class="card">
        <span class="colored-line has-background-success"></span>
        <div class="card-content">
            <h2 class="title is-4">😜 April Fools</h2>
            <p class="subtitle is-7 has-text-grey">
                <span class="icon-text">
                    <span class="icon date-icon"><i class="fa-regular fa-calendar"></i></span>
                    <span>April 1st</span>
                </span>
            </p>
            <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
        </div>
    </div>
</div>