aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/templates
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2020-10-26 19:42:51 +0200
committerGravatar ks129 <[email protected]>2020-10-26 19:42:51 +0200
commit57904f2de4e4ee7d6a12e16a0c96fbd58841d268 (patch)
tree9bb9681a3ec314ce64c5c1d6d63358190652a20f /pydis_site/templates
parentCreate base events page template (diff)
Create index events page template
Diffstat (limited to 'pydis_site/templates')
-rw-r--r--pydis_site/templates/events/index.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/pydis_site/templates/events/index.html b/pydis_site/templates/events/index.html
new file mode 100644
index 00000000..5ec8b0ef
--- /dev/null
+++ b/pydis_site/templates/events/index.html
@@ -0,0 +1,17 @@
+{% extends "events/base.html" %}
+
+{% block title %}Events{% endblock %}
+
+{% block breadcrumb %}
+ <li class="is-active"><a href="#">Events</a></li>
+{% endblock %}
+
+{% block event_content %}
+ <div class="box">
+ <h2 class="title is-4">Code Jams</h2>
+ <p>Each year, we organize a Winter Code Jam and a Summer Code Jam. During these events, members of our community will work together in teams to create something amazing using a technology we picked for them. One such technology that was picked for the Winter Code Jam 2020 was Kivy, a cross-platform GUI framework.</p>
+ <p>To help fuel the creative process, we provide a specific theme, like <strong>Ancient Technology</strong> or <strong>This App Hates You</strong>. At the end of the Code Jam, the projects are judged by Python Discord server staff members and guest judges from the larger Python community. The judges will consider creativity, code quality, teamwork, and adherence to the theme.</p>
+ <p>If you want to read more about Code Jams, visit our <a href="/events/code-jams">Code Jam info page</a> or watch this video showcasing the best projects created during the <strong>Winter Code Jam 2020: Ancient Technology</strong>:</p>
+ <iframe width="560" height="315" src="https://www.youtube.com/embed/8fbZsGrqBzo" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen=""></iframe>
+ </div>
+{% endblock %}