diff options
author | 2020-02-16 11:53:55 +0100 | |
---|---|---|
committer | 2020-02-16 11:53:55 +0100 | |
commit | bbe9f309a6f35e4d4e6ea96dc05ac0644c8c9484 (patch) | |
tree | 32a265e62e3dc2648f6794ab28dfbf46c3974f33 | |
parent | Add vscode project folder to gitignore (diff) |
Switch the code jam banner for the stream.
With the code jam over, we don't want a code jam banner on our front
page. This commit replaces it with the Code Jam Judge Stream.
-rw-r--r-- | pydis_site/templates/home/index.html | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/pydis_site/templates/home/index.html b/pydis_site/templates/home/index.html index 3b150767..e8aae7fe 100644 --- a/pydis_site/templates/home/index.html +++ b/pydis_site/templates/home/index.html @@ -37,11 +37,15 @@ </p> </div> - {# Code Jam banner #} + {# Right column container #} <div class="column is-half-desktop video-container"> - <a href="https://pythondiscord.com/pages/code-jams/code-jam-6/"> - <img src="https://raw.githubusercontent.com/python-discord/branding/master/logos/logo_discord_banner/code%20jam%206%20-%20website%20banner.png"/> - </a> + <iframe + width="560" + height="315" + src="https://www.youtube.com/embed/I97L_Y3rhvc?start=381" + frameborder="0" + allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen> + </iframe> </div> </div> |