2015-04-19 11:45:14 +00:00
|
|
|
<ul class="kubernetes-ui-menu">
|
2015-05-29 10:35:27 +00:00
|
|
|
<li ng-repeat="section in menu.sections" class="parent-list-item" ng-class="{'parentActive' : isSectionSelected(section)}">
|
|
|
|
<h2 class="menu-heading" ng-if="section.type === 'heading'" id="heading_{{ section.name | nospace }}">
|
|
|
|
{{section.name}}
|
|
|
|
</h2>
|
|
|
|
<menu-link section="section" ng-if="section.type === 'link'"></menu-link>
|
|
|
|
<menu-toggle section="section" ng-if="section.type === 'toggle'"></menu-toggle>
|
|
|
|
<ul ng-if="section.children" class="menu-nested-list">
|
|
|
|
<li ng-repeat="child in section.children" ng-class="{'childActive' : isSectionSelected(child)}">
|
|
|
|
<menu-toggle section="child"></menu-toggle>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
2015-04-19 11:45:14 +00:00
|
|
|
</ul>
|