Skip to content

Commit

Permalink
feat: link show types on home page
Browse files Browse the repository at this point in the history
  • Loading branch information
w3cj committed Nov 14, 2024
1 parent 391638e commit 47f4cb6
Showing 1 changed file with 24 additions and 18 deletions.
42 changes: 24 additions & 18 deletions src/lib/schedule.svelte
Original file line number Diff line number Diff line change
@@ -1,28 +1,34 @@
<section>
<p class="lines thrice">Served Fresh Thrice Weekly</p>
<div>
<p class="tag length">15m</p>
<p class="tag day">Monday</p>
<div>
<p class="tag">HASTY TREAT</p>
</div>
<p class="desc">Quick n' Informative</p>
<a href="/shows?type=hasty">
<p class="tag length">15m</p>
<p class="tag day">Monday</p>
<div>
<p class="tag">HASTY TREAT</p>
</div>
<p class="desc">Quick n' Informative</p>
</a>
</div>
<div>
<p class="tag length">60m</p>
<p class="tag day">Wednesday</p>
<div>
<p class="tag">TASTY TREAT</p>
</div>
<p class="desc">Deep Dives</p>
<a href="/shows?type=tasty">
<p class="tag length">60m</p>
<p class="tag day">Wednesday</p>
<div>
<p class="tag">TASTY TREAT</p>
</div>
<p class="desc">Deep Dives</p>
</a>
</div>
<div>
<p class="tag length">60m</p>
<p class="tag day">Friday</p>
<div>
<p class="tag">SUPPER CLUB</p>
</div>
<p class="desc">Industry Experts</p>
<a href="/shows?type=supper">
<p class="tag length">60m</p>
<p class="tag day">Friday</p>
<div>
<p class="tag">SUPPER CLUB</p>
</div>
<p class="desc">Industry Experts</p>
</a>
</div>
</section>

Expand Down

0 comments on commit 47f4cb6

Please sign in to comment.