Launch SaborFlow Da Nang website
Multi-page static site for Da Nang's Latin dance community. Pages: Home, Schedule, Connect, Studios, Classes, Festivals. Colors match the logo palette; fully responsive with mobile nav. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
86
schedule.html
Normal file
86
schedule.html
Normal file
@@ -0,0 +1,86 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Weekly Schedule — SaborFlow Da Nang</title>
|
||||
<meta name="description" content="The weekly Latin social dance schedule in Da Nang and Hoi An. Salsa, Bachata, Kizomba, Zouk — every day of the week.">
|
||||
<link rel="icon" type="image/jpeg" href="assets/logo.jpg">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav class="nav">
|
||||
<div class="nav-container">
|
||||
<a href="index.html" class="nav-logo">
|
||||
<img src="assets/logo.jpg" alt="SaborFlow Da Nang">
|
||||
</a>
|
||||
<button class="nav-hamburger" id="hamburger" aria-label="Toggle menu" aria-expanded="false">
|
||||
<span></span><span></span><span></span>
|
||||
</button>
|
||||
<ul class="nav-links" id="nav-links">
|
||||
<li><a href="index.html">Home</a></li>
|
||||
<li><a href="schedule.html" class="active">Schedule</a></li>
|
||||
<li><a href="connect.html">Connect</a></li>
|
||||
<li><a href="studios.html">Studios</a></li>
|
||||
<li><a href="classes.html">Classes</a></li>
|
||||
<li><a href="festivals.html">Festivals</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header">
|
||||
<h1>Weekly <span class="accent">Schedule</span></h1>
|
||||
<p class="subtitle">Your guide to social dancing in Da Nang and Hoi An — every single week.</p>
|
||||
</div>
|
||||
|
||||
<div class="schedule-note">
|
||||
<span>🎵</span>
|
||||
<span>The music ratio (e.g. <strong>2 Salsa · 2 Bachata · 2 Kizomba</strong>) shows the approximate number of songs played per style in each rotation. Schedules may change — follow <a href="https://www.instagram.com/saborflowdanang/" target="_blank" rel="noopener" style="color:inherit;text-decoration:underline">@saborflowdanang</a> and the <a href="https://www.facebook.com/groups/sbkdanang/" target="_blank" rel="noopener" style="color:inherit;text-decoration:underline">Da Nang SBK group</a> for real-time updates. Pop-up parties for <strong>Zouk</strong> and <strong>Tango</strong> are announced there too!</span>
|
||||
</div>
|
||||
|
||||
<div class="schedule-table-wrap">
|
||||
<table class="schedule-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Day</th>
|
||||
<th>Venue</th>
|
||||
<th>Social</th>
|
||||
<th>Music</th>
|
||||
<th>City</th>
|
||||
<th>Organizer</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="schedule-tbody"></tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="mt-3" style="text-align:center;color:var(--subtle);font-size:.875rem">
|
||||
Schedule updated monthly. Last update: <strong style="color:var(--white)">April 2026</strong>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="footer" style="margin-top:4rem">
|
||||
<div class="container">
|
||||
<div class="footer-content">
|
||||
<a href="index.html" class="footer-logo">
|
||||
<img src="assets/logo.jpg" alt="SaborFlow Da Nang">
|
||||
</a>
|
||||
<nav class="footer-nav">
|
||||
<a href="index.html">Home</a>
|
||||
<a href="schedule.html">Schedule</a>
|
||||
<a href="connect.html">Connect</a>
|
||||
<a href="studios.html">Studios</a>
|
||||
<a href="classes.html">Classes</a>
|
||||
<a href="festivals.html">Festivals</a>
|
||||
</nav>
|
||||
<p class="footer-tagline">Made with love for the Da Nang dance community 💃🕺</p>
|
||||
<a href="https://www.instagram.com/saborflowdanang/" target="_blank" rel="noopener" class="footer-ig">📸 @saborflowdanang</a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user