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.
16 lines
569 B
16 lines
569 B
<div class="ui container" id="mainmenu">
|
|
<div class="ui large secondary inverted pointing menu">
|
|
<a class="toc item">
|
|
<i class="sidebar icon"></i>
|
|
</a>
|
|
<?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>
|