Some improvments
This commit is contained in:
@@ -65,8 +65,7 @@
|
||||
<div class="info">
|
||||
Music ratios (e.g. <b>2 Salsa · 2 Bachata · 2 Kizomba</b>) show approximate songs per style per rotation.
|
||||
Schedules may change — follow <a href="https://www.instagram.com/saborflowdanang/" target="_blank"
|
||||
rel="noopener">@saborflowdanang</a> and the <a href="https://www.facebook.com/groups/sbkdanang/"
|
||||
target="_blank" rel="noopener">Da Nang SBK group</a> for real-time updates. Pop-up parties for <b>Zouk</b> and
|
||||
rel="noopener">@saborflowdanang</a> for real-time updates. Pop-up parties for <b>Zouk</b> and
|
||||
<b>Tango</b> are announced there too.
|
||||
</div>
|
||||
</div>
|
||||
@@ -85,8 +84,7 @@
|
||||
|
||||
<div class="sfB-list" id="sfB-schedule-list"></div>
|
||||
|
||||
<p class="footnote">Schedule updated monthly — last update: <strong style="color:var(--sf-gold)">May
|
||||
2026</strong></p>
|
||||
<p class="footnote">Schedule updated monthly — last update: <strong style="color:var(--sf-gold)" id="schedule-last-update"></strong></p>
|
||||
</main>
|
||||
|
||||
<footer class="sfB-foot">
|
||||
@@ -101,12 +99,20 @@
|
||||
</nav>
|
||||
<div class="foot-social">
|
||||
<a href="https://www.instagram.com/saborflowdanang/" target="_blank" rel="noopener">Instagram</a>
|
||||
<a href="https://www.facebook.com/groups/sbkdanang/" target="_blank" rel="noopener">Facebook</a>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="js/main.js"></script>
|
||||
<script>
|
||||
// Dynamic last-update label
|
||||
(function () {
|
||||
const el = document.getElementById('schedule-last-update');
|
||||
if (el) {
|
||||
const now = new Date();
|
||||
el.textContent = now.toLocaleString('en-US', { month: 'long', year: 'numeric' });
|
||||
}
|
||||
})();
|
||||
|
||||
// Schedule-page filter by city / style
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
document.querySelectorAll('.sfB-pills .filter-pill').forEach(pill => {
|
||||
|
||||
Reference in New Issue
Block a user