Skip to content

Commit

Permalink
add karaoke activity (#512)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoow authored Jul 18, 2024
2 parents a73aa82 + 240a99e commit e20cbfc
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
Binary file added static/images/karaoke.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions templates/sections/schedule.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ <h3 class="h3 mb-4">Pre Conference Day - Oct. 9th, 2024</h3>
{% set_global currentRowspan = 0 %}
{% set_global sideRow = 0 %}
{% for day in schedule %}
{% set is_day1 = loop.first %}
<div>
<div class="conference mb-7">
<h3 class="h3">Conference Day {{ day.day }} - {{ day.date }}</h3>
Expand All @@ -62,6 +63,18 @@ <h4 class="schedule__track mb-4">Side track</h4>
<ol class="schedule__list">
{% for activity in day.side %}
{% include "partials/activity-card.html" %}
{% if is_day1 and loop.last %}
<div class="closing-party closing-party__grid schedule__shared">
<div class="closing-party__content">
<h3 class="large mb-2">19:00 - Karaoke – let's sing!</h3>
<p>The EuroRust team reserved 30 spots at the Karaoke bar <a href="https://www.babuders.at" target="_blank">Babuder's</a> for Rustaceans who like to sing after the first conference day 🧑‍🎤.</p>
</div>
<div class="closing-party__image">
<div class="closing-party__image-overlay"></div>
<img class="image-party" src="/images/karaoke.jpg" alt="boy singing into a microphone"/>
</div>
</div>
{% endif %}
{% endfor %}
</ol>
</div>
Expand Down Expand Up @@ -116,6 +129,23 @@ <h3 class="large mb-2">18:00 - Closing Party</h3>
{% endif %}
{% set_global sideCount = sideCount + 1 %}
</tr>
{% if is_day1 and loop.last %}
<tr>
<td class="visually-hidden">19:00</td>
<td colspan="2">
<div class="closing-party closing-party__grid schedule__shared">
<div class="closing-party__content">
<h3 class="large mb-2">19:00 Karaoke – let's sing!</h3>
<p>The EuroRust team reserved 30 spots at the Karaoke bar <a href="https://www.babuders.at" target="_blank">Babuder's</a> for Rustaceans who like to sing after the first conference day 🧑‍🎤.</p>
</div>
<div class="closing-party__image">
<div class="closing-party__image-overlay"></div>
<img class="image-party" src="/images/karaoke.jpg" alt="boy singing into a microphone"/>
</div>
</div>
</td>
</tr>
{% endif %}
{% endfor %}
{% if loop.last %}
<tr>
Expand Down

0 comments on commit e20cbfc

Please sign in to comment.