39 lines
1.9 KiB
PHP
39 lines
1.9 KiB
PHP
<header class="site-navbar py-4 bg-white" role="banner">
|
|
|
|
<div class="container">
|
|
<div class="row align-items-center">
|
|
|
|
<div class="col-11 col-xl-2">
|
|
<h1 class="mb-0 site-logo"><a href="index.html" class="text-black h2 mb-0"><?=$header?></a></h1>
|
|
</div>
|
|
<div class="col-12 col-md-10 d-none d-xl-block">
|
|
<nav class="site-navigation position-relative text-right" role="navigation">
|
|
|
|
<ul class="site-menu js-clone-nav mr-auto d-none d-lg-block">
|
|
<li <?php if ($this->uri->segment(2) == '') { echo 'class="active"'; } ?>><a href="<?=base_url()?>">Home</a></li>
|
|
<li <?php if ($this->uri->segment(2) == 'project') { echo 'class="active"'; } ?>><a href="<?=base_url()?>home/project">Desain Project</a></li>
|
|
<!-- <li class="has-children">
|
|
<a href="services.html">Services</a>
|
|
<ul class="dropdown">
|
|
<li><a href="services.html">Web Applications</a></li>
|
|
<li><a href="services.html">WordPress Dev</a></li>
|
|
<li><a href="services.html">Mobile Applications</a></li>
|
|
<li><a href="services.html">eCommerce</a></li>
|
|
</ul>
|
|
</li> -->
|
|
<!-- <li><a href="about.html">About</a></li>
|
|
<li><a href="blog.html">Blog</a></li> -->
|
|
<li <?php if ($this->uri->segment(2) == 'prelogin') { echo 'class="active"'; } ?>><a href="<?=base_url()?>home/prelogin">Login</a></li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
|
|
|
|
<div class="d-inline-block d-xl-none ml-md-0 mr-auto py-3" style="position: relative; top: 3px;"><a href="#" class="site-menu-toggle js-menu-toggle text-black"><span class="icon-menu h3"></span></a></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</header>
|