diff options
author | 2024-01-22 19:34:18 +0800 | |
---|---|---|
committer | 2024-01-22 19:34:26 +0800 | |
commit | 13521559402df023ea699ce76a3d5f7eba28a6ff (patch) | |
tree | d1439eb4a94ec46b06745fd6bcfd29c6ca1794d0 /pydis_site/templates/events/current_event.html | |
parent | Events: Revert height change (diff) |
Events: Make good use of bulma components
Diffstat (limited to 'pydis_site/templates/events/current_event.html')
-rw-r--r-- | pydis_site/templates/events/current_event.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pydis_site/templates/events/current_event.html b/pydis_site/templates/events/current_event.html index dd94fb3f..dd59b040 100644 --- a/pydis_site/templates/events/current_event.html +++ b/pydis_site/templates/events/current_event.html @@ -1 +1,20 @@ +{% load static %} + {# Current or ongoing event #} +{# (n/a) #} + +{# Next event to promote #} +<div class="box has-background-warning-light" style="padding: 2rem; padding-top: 1.25rem;"> + <div class="columns is-3" style="--columnGap: 0.75rem;"> + <div class="column"> + <p class="subtitle is-6 has-text-grey" style="padding-bottom: 1rem;">Upcoming event</p> + <h2 class="title is-4"><a href="https://pyweek.org/">PyWeek 37</a></h2> + <p><strong>March 17-24</strong></p> + </div> + <div class="column"> + <img src="https://pyweek.readthedocs.io/en/latest/_static/pyweek.svg" style="border-radius: 10px;" alt="PyWeek logo"> + </div> + </div> + <p>PyWeek has been running a bi-annual game jam for the Python language. As of 2020, we are excited to say we are officially partnered with PyWeek to co-run these events.</p> + <a class="button is-link" href="https://pyweek.org/">Learn more</a> +</div> |