|
5 | 5 | <meta charset="utf-8" /> |
6 | 6 | <meta name="viewport" content="width=device-width,initial-scale=1" /> |
7 | 7 | <title>Saklaw</title> |
8 | | -
|
9 | | - <!-- Google Font --> |
10 | 8 | <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap" rel="stylesheet"> |
11 | 9 | <script src="https://kit.fontawesome.com/f02a36f28e.js" crossorigin="anonymous"></script> |
12 | 10 | <link rel="stylesheet" href="./assets/css/home.css"> |
13 | | - <script src="../Saklaw/assets/js/home.js"></script> |
| 11 | + <script src="../Saklaw/assets/js/home.js"></script> |
14 | 12 | </head> |
15 | 13 | <body> |
16 | 14 | <header class="site-header"> |
|
113 | 111 | <h2 class="section-title">Announcements</h2> |
114 | 112 | <div class="carousel"> |
115 | 113 | <div class="carousel-inner"> |
116 | | - <a class="carousel-slide"> |
| 114 | + <a class="carousel-slide active"> |
117 | 115 | <h4>Barangay Clean-Up Drive</h4> |
118 | 116 | <p>Our scheduled clean-up drive will be on September 20. Join us at 7:00 AM at the community center.</p> |
119 | 117 | <time datetime="2025-09-20">Sep 20, 2025</time> |
|
140 | 138 | </div> |
141 | 139 | </div> |
142 | 140 | </section> |
| 141 | + <<script> |
| 142 | + const slides = document.querySelectorAll('.carousel-slide'); |
| 143 | + const dots = document.querySelectorAll('.dot'); |
| 144 | + let current = 0; |
| 145 | +
|
| 146 | + function showSlide(index) { |
| 147 | + slides.forEach((slide, i) => slide.classList.toggle('active', i === index)); |
| 148 | + dots.forEach((dot, i) => dot.classList.toggle('active', i === index)); |
| 149 | + current = index; |
| 150 | + } |
| 151 | +
|
| 152 | + // Auto-rotate every 5 seconds |
| 153 | + setInterval(() => { |
| 154 | + showSlide((current + 1) % slides.length); |
| 155 | + }, 5000); |
| 156 | +
|
| 157 | + // Dot click navigation |
| 158 | + dots.forEach((dot, i) => dot.addEventListener('click', () => showSlide(i))); |
| 159 | + </script> |
143 | 160 |
|
144 | 161 | <!--About--> |
145 | 162 | <section id="about" class="section about-section"> |
|
188 | 205 | </div> |
189 | 206 | </div> |
190 | 207 | </section> |
191 | | - </main> |
192 | | -
|
193 | | -<!-- Google AdSense --> |
194 | | - <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6318920818085530" |
195 | | - crossorigin="anonymous"></script> |
196 | | - <!-- first-ads --> |
197 | | - <ins class="adsbygoogle" |
198 | | - style="display:block" |
199 | | - data-ad-client="ca-pub-6318920818085530" |
200 | | - data-ad-slot="4856050510" |
201 | | - data-ad-format="auto" |
202 | | - data-full-width-responsive="true"></ins> |
203 | | - <script> |
204 | | - (adsbygoogle = window.adsbygoogle || []).push({}); |
205 | | - </script> |
| 208 | + </main> |
206 | 209 |
|
207 | 210 | <footer class="site-footer"> |
208 | 211 | <div class="wrap footer-inner"> |
|
0 commit comments