20 lines
1008 B
PHP
20 lines
1008 B
PHP
<header id="header" class="fixed-top ">
|
|
<div class="container d-flex align-items-center">
|
|
|
|
<h1 class="logo me-auto"><a href="index.html">K-Means</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=2019">Peta</a></li>
|
|
<li><a class="nav-link scrollto" href="#">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 --> |