You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.8 KiB
40 lines
1.8 KiB
|
|
<?php
|
|
$redHeader = array('training-pull','training-push','monitoring');
|
|
?>
|
|
|
|
<header class="<?php if(in_array($getQ[0], $redHeader)){echo "red";}?>">
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-2"><img class="logo middle" src="<?= $BASE_URL;?>/images/logo.png"></div>
|
|
|
|
<?php
|
|
if(in_array($getQ[0], $redHeader)){
|
|
echo "<div class=\"col-10 font-20 text-white text-right\"><span class=\"middle-right pr-3\">";
|
|
switch($getQ[0]){
|
|
case 'training-pull':
|
|
echo "Fomazione pull";
|
|
}
|
|
echo "</span></div>";
|
|
}else{
|
|
?>
|
|
<div class="col-10 menu">
|
|
<ul class="middle">
|
|
<li class="<?php if($getQ[0]=="menu"){echo "active";}?>"><a href="<?= $BASE_URL;?>/menu">Menu</a></li>
|
|
<li class="<?php if($getQ[0]=="results"){echo "active";}?>"><a href="<?= $BASE_URL;?>/results">Risultati</a></li>
|
|
<li class="<?php if($getQ[0]=="plans"){echo "active";}?>"><a href="<?= $BASE_URL;?>/plans">Piani attivi</a></li>
|
|
<li class="<?php if($getQ[0]=="report"){echo "active";}?>"><a href="<?= $BASE_URL;?>/report">Report</a></li>
|
|
<li class="<?php if($getQ[0]=="modules" || $getQ[0]=="compatibility"){echo "active";}?>"><a href="<?= $BASE_URL;?>/modules">Moduli disponibili</a></li>
|
|
<li><a href="#"><i class="fa fa-search"></i></a></li>
|
|
<li><a href="#"><i class="fa fa-bell"></i></a></li>
|
|
<li><a href="#"><i class="fa fa-user"></i></a></li>
|
|
</ul>
|
|
</div>
|
|
<?php
|
|
}
|
|
?>
|
|
</div>
|
|
</div>
|
|
|
|
</header>
|