TIF_E41201448/application/views/dist/_partials/user/navbar_user.php

23 lines
1.1 KiB
PHP

<header id="header_user" class="fixed-top ">
<div class="container d-flex align-items-center">
<h1 class="logo me-auto"><a href="<?php echo base_url() ?>">SIG-KMeans</a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html" class="logo me-auto"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
<nav id="navbar" class="navbar">
<ul>
<li><a class="<?php echo $this->uri->segment(2) == '' ? 'active' : ''; ?>"
href="<?php echo base_url(); ?>">Beranda</a></li>
<li><a class="<?php echo $this->uri->segment(2) == 'peta' ? 'active' : ''; ?>"
href="<?php echo base_url(); ?>welcome/peta?tahun=">Peta</a></li>
<li><a class="<?php echo $this->uri->segment(2) == 'tentang' ? 'active' : ''; ?>"
href="<?php echo base_url(); ?>welcome/tentang">Tentang</a></li>
<li><a class="getstarted scrollto" href="<?php echo base_url() ?>Dist/">Login</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->