ESPTerm - ESP8266 terminal emulator. Branches: [master] patches, [work] next release
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.
|
|
|
|
|
|
|
<nav id="menu">
|
|
|
|
<div id="brand" onclick="$('#menu').toggleClass('expanded')"><?= tr('appname') ?></div>
|
|
|
|
<?php
|
|
|
|
// generate the menu
|
|
|
|
foreach($_pages as $k => $page) {
|
|
|
|
if (strpos($page->bodyclass, 'cfg') === false) continue;
|
|
|
|
|
|
|
|
$sel = (CUR_PAGE == $k) ? ' class="selected"' : '';
|
|
|
|
$text = $page->label;
|
|
|
|
$url = e(url($k));
|
|
|
|
echo "<a href=\"$url\"$sel>$text</a>";
|
|
|
|
}
|
|
|
|
?><a href="<?= e(url('term')) ?>"><?= tr('menu.term') ?></a>
|
|
|
|
|
|
|
|
</nav>
|