12 lines
No EOL
535 B
HTML
12 lines
No EOL
535 B
HTML
<div class="breadcrumb">
|
|
<a href="/{{ repo.full_name }}/edit" class="icon icon-home">
|
|
<i class="material-icons md-18">home</i>
|
|
</a>
|
|
<a ng-href="/{{ repo.full_name }}">{{ repo.owner }} / {{ repo.name }}</a>
|
|
</div>
|
|
|
|
<div class="menu">
|
|
<a ng-href="/{{ repo.full_name }}/edit" class="nav-item settings float-right"></a>
|
|
<button ng-click="watch(repo)" ng-if="!repo.starred" class="nav-item star float-right"></button>
|
|
<button ng-click="unwatch(repo)" ng-if="repo.starred" class="nav-item unstar float-right"></button>
|
|
</div> |