2017-12-01 14:04:48 -06:00
|
|
|
|
|
|
|
<div class="edit-tab-with-sidemenu">
|
|
|
|
<aside class="edit-sidemenu-aside">
|
2017-12-02 00:05:58 -06:00
|
|
|
<h2>
|
|
|
|
<i class="fa fa-cog"></i>
|
|
|
|
Settings
|
|
|
|
</h2>
|
|
|
|
|
2017-12-01 14:04:48 -06:00
|
|
|
<ul class="edit-sidemenu">
|
|
|
|
<li ng-class="{active: ctrl.viewId === section.id}" ng-repeat="section in ctrl.sections">
|
|
|
|
<a ng-click="ctrl.viewId = section.id">
|
|
|
|
{{::section.title}}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</aside>
|
|
|
|
|
|
|
|
<div class="edit-tab-content" ng-if="ctrl.viewId === 'general'">
|
|
|
|
general
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="edit-tab-content" ng-if="ctrl.viewId === 'annotations'">
|
|
|
|
annotations
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="edit-tab-content" ng-if="ctrl.viewId === 'templating'">
|
|
|
|
annotations
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|