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.

25 lines
697 B

<!-- Following Menu -->
<div class="ui large top fixed hidden menu">
<div class="ui container">
<?php
foreach ($mainMenu as $item) {
$active = $currentPage==$item? 'active ': '';
echo '
<a class="'.$active.'item" href="'.$item['key'].'.html" target="_self">'.$item['name'].'</a>';
}
?>
</div>
</div>
<!-- Sidebar Menu -->
<div class="ui vertical inverted sidebar menu">
<?php
foreach ($mainMenu as $item) {
$active = $currentPage==$item? 'active ': '';
echo '
<a class="'.$active.'item" href="'.$item['key'].'.html" target="_self">'.$item['name'].'</a>';
}
?>
</div>