main
Ilham Wara Nugroho 2025-09-15 09:28:26 +07:00
parent 5a983799a1
commit 2ae8d6550d
1 changed files with 4 additions and 4 deletions

View File

@ -55,16 +55,16 @@
<div class="items-center justify-between hidden w-full md:flex md:w-auto md:order-1" id="navbar-cta">
<ul class="flex flex-col font-medium p-4 md:p-0 mt-4 border md:space-x-8 rtl:space-x-reverse md:flex-row md:mt-0 md:border-0 bg-white">
<li>
<a href="{{ url('/') }}" class="block py-2 px-3" aria-current="page">Beranda</a>
<a href="{{ url('/') }}" class="block py-2 px-3 {{ Request::is('/') ? 'text-success' : '' }}" aria-current="page">Beranda</a>
</li>
<li>
<a href="{{ url('sekolah') }}" class="block py-2 px-3">Daftar Sekolah Adiwiyata</a>
<a href="{{ url('sekolah') }}" class="block py-2 px-3 {{ Request::is('sekolah*') ? 'text-success' : '' }}">Daftar Sekolah Adiwiyata</a>
</li>
<li>
<a href="{{ url('kegiatan') }}" class="block py-2 px-3 text-success">Kegiatan Sekolah Adiwiyata</a>
<a href="{{ url('kegiatan') }}" class="block py-2 px-3 {{ Request::is('kegiatan*') ? 'text-success' : '' }}">Kegiatan Sekolah Adiwiyata</a>
</li>
<li>
<a href="{{ url('galeri') }}" class="block py-2 px-3">Galeri</a>
<a href="{{ url('galeri') }}" class="block py-2 px-3 {{ Request::is('galeri*') ? 'text-success' : '' }}">Galeri</a>
</li>
</ul>
</div>