diff options
author | 2022-07-01 16:13:20 +0100 | |
---|---|---|
committer | 2022-07-01 16:13:20 +0100 | |
commit | 706d027f03dd9069f3403681301067365d4c9c87 (patch) | |
tree | 88224bdcd1c85ce8037ff353a6f3f409346300e4 | |
parent | Update pydis_site/apps/content/resources/guides/python-guides/discord-app-com... (diff) | |
parent | Merge pull request #735 from python-discord/cj9-qualifier (diff) |
Merge branch 'python-discord:main' into main
-rw-r--r-- | pydis_site/static/css/home/index.css | 3 | ||||
-rw-r--r-- | pydis_site/templates/events/index.html | 2 | ||||
-rw-r--r-- | pydis_site/templates/events/pages/code-jams/9/_index.html | 12 | ||||
-rw-r--r-- | pydis_site/templates/events/pages/code-jams/_index.html | 11 | ||||
-rw-r--r-- | pydis_site/templates/home/index.html | 10 |
5 files changed, 17 insertions, 21 deletions
diff --git a/pydis_site/static/css/home/index.css b/pydis_site/static/css/home/index.css index e1d70370..e117a35b 100644 --- a/pydis_site/static/css/home/index.css +++ b/pydis_site/static/css/home/index.css @@ -126,8 +126,7 @@ h1 { margin: 0 4% 0 4%; background-color: #3EB2EF; color: white; - font-size: 15px; - line-height: 33px; + line-height: 31px; border:none; box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); transition: all 0.3s cubic-bezier(.25,.8,.25,1); diff --git a/pydis_site/templates/events/index.html b/pydis_site/templates/events/index.html index 62d62111..db3e32f7 100644 --- a/pydis_site/templates/events/index.html +++ b/pydis_site/templates/events/index.html @@ -10,7 +10,7 @@ <div class="box"> <h2 class="title is-4"><a href="{% url "events:page" path="code-jams" %}">Code Jams</a></h2> <div class="notification is-success"> - The <b>2022 Summer Code Jam</b> qualifier will open June 29th. Check out the details <a href="{% url "events:page" path="code-jams/9" %}">here</a>. + The <b>2022 Summer Code Jam</b> is currently underway and you can still enter! <b>The qualifier is open until July 13</b>; check out the details <a href="{% url "events:page" path="code-jams/9" %}">here</a>. </div> <p>Every year we hold a community-wide Summer Code Jam. For this event, members of our community are assigned to teams to collaborate and create something amazing using a technology we picked for them. One such technology that was picked for the Summer 2021 Code Jam was text user interfaces (TUIs), where teams could pick from a pre-approved list of frameworks.</p> <p>To help fuel the creative process, we provide a specific theme, like <strong>Think Inside the Box</strong> or <strong>Early Internet</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> diff --git a/pydis_site/templates/events/pages/code-jams/9/_index.html b/pydis_site/templates/events/pages/code-jams/9/_index.html index 6e458481..7c57b799 100644 --- a/pydis_site/templates/events/pages/code-jams/9/_index.html +++ b/pydis_site/templates/events/pages/code-jams/9/_index.html @@ -22,8 +22,8 @@ <h3 id="important-dates"><a href="#important-dates">Important Dates</a></h3> <ul> - <li>Saturday, June 18 - Form to submit theme suggestions opens</li> - <li>Wednesday, June 29 - The Qualifier is released</li> + <li><strike>Saturday, June 18 - Form to submit theme suggestions opens</strike></li> + <li><strike>Wednesday, June 29 - The Qualifier is released</strike></li> <li>Wednesday, July 6 - Voting for the theme opens</li> <li>Wednesday, July 13 - The Qualifier closes</li> <li>Thursday, July 21 - Code Jam Begins</li> @@ -31,9 +31,11 @@ <li>Sunday, August 4 - Code Jam submissions are closed</li> </ul> <h3 id="how-to-join"><a href="#how-to-join">How to Join</a></h3> - <p>The Qualifier isn't released yet, but to receive the most up-to-date information and to get notified - when the Qualifier is released you can join the server: <a href="https://discord.gg/python">discord.gg/python</a>.</p> - + <p> + Before being able to join the code jam, you must complete a qualifier which tests your knowledge in Python. + The qualifier can be found <a href="https://github.com/python-discord/code-jam-qualifier-9/" title="Code Jam 9 qualifier repository" target="_blank" rel="noopener">on our GitHub</a> + and once completed you should submit your solution using the <a href="https://forms.pythondiscord.com/form/cj9-qualifier" target="_blank" rel="noopener">sign-up form</a>. + </p> <h3 id="technology"><a href="#technology">Technology</a></h3> <p> The chosen technology/tech stack for this year is <strong>WebSockets</strong>. diff --git a/pydis_site/templates/events/pages/code-jams/_index.html b/pydis_site/templates/events/pages/code-jams/_index.html index 5e3cd930..74efcfaa 100644 --- a/pydis_site/templates/events/pages/code-jams/_index.html +++ b/pydis_site/templates/events/pages/code-jams/_index.html @@ -9,14 +9,9 @@ {% block event_content %} <div class="block"> - <a href="9/_index" class="button is-primary mt-1"> - <span class="icon-text"> - <span>Code Jam 2022 is Coming This July!</span> - <span class="icon"> - <i class="fas fa-arrow-right"></i> - </span> - </span> - </a> + <div class="notification is-success"> + The <b>2022 Summer Code Jam</b> is currently underway and you can still enter! <b>The qualifier is open until July 13</b>; check out the details <a href="{% url "events:page" path="code-jams/9" %}">here</a>. + </div> </div> <p> diff --git a/pydis_site/templates/home/index.html b/pydis_site/templates/home/index.html index 95c8dd5f..cdbac830 100644 --- a/pydis_site/templates/home/index.html +++ b/pydis_site/templates/home/index.html @@ -12,7 +12,7 @@ <!-- Mobile-only Code Jam Banner --> <section id="mobile-notice" class="is-primary is-hidden-tablet"> <a href="/events/code-jams/9/"> - <img src="{% static "images/events/summer_code_jam_2022/front_page_banners/qualifier_release.png" %}" alt="Summer Code Jam 2022"> + <img src="{% static "images/events/summer_code_jam_2022/front_page_banners/sign_up.png" %}" alt="Summer Code Jam 2022"> </a> </section> @@ -48,7 +48,7 @@ {# Code Jam Banner #} <div id="wave-hero-right" class="column is-half"> <a href="/events/code-jams/9/"> - <img src="{% static "images/events/summer_code_jam_2022/front_page_banners/qualifier_release.png" %}" alt="Summer Code Jam 2022"> + <img src="{% static "images/events/summer_code_jam_2022/front_page_banners/sign_up.png" %}" alt="Summer Code Jam 2022"> </a> </div> </div> @@ -99,9 +99,9 @@ <div class="mini-timeline"> <i class="fa fa-asterisk"></i> <i class="fa fa-code"></i> - <i class="fab fa-python"></i> - <i class="fa fa-alien-monster"></i> - <i class="fa fa-duck"></i> + <i class="fab fa-lg fa-python"></i> + <i class="fab fa-discord"></i> + <i class="fa fa-sm fa-terminal"></i> <i class="fa fa-bug"></i> </div> |