diff options
| author | 2022-06-19 19:28:10 +0100 | |
|---|---|---|
| committer | 2022-06-19 19:28:10 +0100 | |
| commit | f49d4001f3010b2b636b7562885676b247844d9f (patch) | |
| tree | 05d1f6c76d84e0a604fa90dc638a03b012997256 /pydis_site/templates | |
| parent | Merge pull request #724 from python-discord/events-css (diff) | |
| parent | Add hover transition to match welcome video. (diff) | |
Merge pull request #726 from python-discord/frontpage-banners
Diffstat (limited to 'pydis_site/templates')
| -rw-r--r-- | pydis_site/templates/home/index.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pydis_site/templates/home/index.html b/pydis_site/templates/home/index.html index c7350cac..95c8dd5f 100644 --- a/pydis_site/templates/home/index.html +++ b/pydis_site/templates/home/index.html @@ -9,6 +9,13 @@ {% block content %} {% include "base/navbar.html" %} + <!-- 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"> + </a> + </section> + <!-- Wave Hero --> <section id="wave-hero" class="section is-hidden-mobile"> @@ -37,7 +44,15 @@ ></iframe> </div> </div> + + {# 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"> + </a> + </div> </div> + </div> {# Animated wave elements #} |