blob: 90d68e97835cd5586e596ee6520e9b1279305b74 (
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
|
{% extends "events/base.html" %}
{% block title %}Events{% endblock %}
{% block breadcrumb %}
<li class="is-active"><a href="#">Events</a></li>
{% endblock %}
{% block event_base_content %}
<div class="columns is-variable is-8" id="main-section">
<div class="column is-two-thirds">
<p>At Python Discord, we run a few regular events such as programming contests and workshops, as well as more ad-hoc events such as Python release streams. All members are welcome to participate in the events live, and for most events we release videos on our <a href="https://www.youtube.com/@PythonDiscord">YouTube channel</a> after the event in case you've missed it.</p>
</p>To subscribe to the announcements, head over to the bottom of the <code>#roles</code> channel and get the <code>@Announcements</code> role to receive notifications on the latest updates!</p>
{% include "events/current_event.html" %}
{% include "events/scheduled_events.html" %}
</div>
<div class="column">
{% include "events/sidebar/main_sidebar.html" %}
</div>
</div>
<br>
<hr id="main-events"/>
{% include "events/main_events.html" %}
<hr id="other-events"/>
{% include "events/other_events.html" %}
{% endblock %}
|