107 lines
3.3 KiB
PHP
107 lines
3.3 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>mivita care</title>
|
|
<meta name="description" content="" />
|
|
<meta name="Author" content="" />
|
|
|
|
<!-- mobile settings -->
|
|
<meta name="viewport" content="width=device-width, maximum-scale=1, initial-scale=1, user-scalable=0" />
|
|
<!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]-->
|
|
|
|
<!-- WEB FONTS : use %7C instead of | (pipe) -->
|
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600%7CRaleway:300,400,500,600,700%7CLato:300,400,400italic,600,700" rel="stylesheet" type="text/css" />
|
|
|
|
<!-- CORE CSS -->
|
|
|
|
<!-- REVOLUTION SLIDER -->
|
|
<link href="<?php echo SERVER ?>/assets/plugins/slider.revolution/css/extralayers.css" rel="stylesheet" type="text/css" />
|
|
<link href="<?php echo SERVER ?>/assets/plugins/slider.revolution/css/settings.css" rel="stylesheet" type="text/css" />
|
|
|
|
|
|
<!-- PAGE LEVEL SCRIPTS -->
|
|
<link href="<?php echo SERVER ?>/assets/css/mystyle.css" rel="stylesheet" type="text/css" id="color_scheme" />
|
|
|
|
<link href="<?php echo SERVER ?>/assets/css/custom-style.css" rel="stylesheet" type="text/css" id="color_scheme" />
|
|
<style type="text/css">
|
|
|
|
.text-primary {
|
|
color:#a5d0a5 !important;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body class="smoothscroll enable-animation">
|
|
|
|
|
|
<!-- wrapper -->
|
|
<div id="wrapper">
|
|
|
|
|
|
<div id="header" class="sticky clearfix">
|
|
|
|
<!-- TOP NAV -->
|
|
<header id="topNav">
|
|
<div class="container">
|
|
|
|
<!-- Mobile Menu Button -->
|
|
<button class="btn btn-mobile" data-toggle="collapse" data-target=".nav-main-collapse">
|
|
<i class="fa fa-bars"></i>
|
|
</button>
|
|
|
|
|
|
<!-- Logo -->
|
|
<a class="logo pull-left" href="<?php echo SERVER ?>/">
|
|
<img class="fixed_top" src="<?php echo SERVER ?>/assets/images/logo_mivita.png" alt="mivita" />
|
|
<img class="fixed_scroll" src="<?php echo SERVER ?>/assets/images/logo_mivita_fixed.png" alt="mivita" />
|
|
</a>
|
|
|
|
|
|
<div class="navbar-collapse pull-right nav-main-collapse collapse">
|
|
<nav class="nav-main">
|
|
<?php
|
|
|
|
$page_path = current(explode('/', trim($_SERVER['REQUEST_URI'], '/')));
|
|
if($page_path){
|
|
$class="active";
|
|
}
|
|
|
|
?>
|
|
<ul id="topMain" class="nav nav-pills nav-main nav-onepage">
|
|
<li <?php echo ($page_path == "") ? 'class="active"' : '' ?>><!-- HOME -->
|
|
<a href="<?php echo SERVER ?>/">
|
|
Start
|
|
</a>
|
|
</li>
|
|
|
|
<li <?php echo ($page_path == "aloevera") ? 'class="active"' : '' ?>>
|
|
<a href="<?php echo SERVER ?>/aloevera">
|
|
Aloe Vera
|
|
</a>
|
|
</li>
|
|
<li <?php echo ($page_path == "produkte") ? 'class="active"' : '' ?>>
|
|
<a href="<?php echo SERVER ?>/produkte">
|
|
Produktwelt
|
|
</a>
|
|
</li>
|
|
<li <?php echo ($page_path == "geschaeftsmodell") ? 'class="active"' : '' ?>>
|
|
<a href="<?php echo SERVER ?>/geschaeftsmodell/karrierechancen">
|
|
Karrierechancen
|
|
</a>
|
|
</li>
|
|
<li <?php echo ($page_path == "kontakt") ? 'class="active"' : '' ?>>
|
|
<a href="<?php echo SERVER ?>/kontakt">
|
|
Kontakt
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
|
|
</nav>
|
|
</div>
|
|
|
|
</div>
|
|
</header>
|
|
<!-- /Top Nav -->
|
|
|
|
</div>
|