<?php
echo '<div class="cell medium-2 sidebar">';
echo '<ul class="no-bullet">';
foreach($data["pages"] as $section => $fields)
{
$current = $data["current"] == $section ? " current" : "";
echo '<li><a href="'. $router->pathFor("admin.section",["section" => $section ]) .'" class="'. $section . $current .'">'. ucfirst($section) .'</a></li>';
}
echo '</ul>';
echo '</div>';
?>