mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
12 lines
408 B
HTML
12 lines
408 B
HTML
<ol class="breadcrumb ed-m-breadcrumb">
|
|
<li>
|
|
<a ng-if="pathParts.length" ng-click="goToRoot()" class="fa fa-home" href="#"></a>
|
|
<span ng-if="!pathParts.length" class="fa fa-home"></span>
|
|
</li>
|
|
<li ng-repeat="part in pathParts"
|
|
ng-class="{'active': $last}">
|
|
<a ng-if="!$last" ng-click="onClick(part)" href="#">{{part.name}}</a>
|
|
<span ng-if="$last">{{part.name}}</span>
|
|
</li>
|
|
</ol>
|