mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2024-11-21 13:42:48 +01:00
a1edb03e19
Signed-off-by: Marco Nassabain <marco.nassabain@hotmail.com>
20 lines
610 B
PHP
20 lines
610 B
PHP
<li ng-class="{
|
|
active: Navigation.isStarredActive(),
|
|
unread: Navigation.isStarredUnread()
|
|
}"
|
|
class="with-counter starred-feed">
|
|
|
|
<a class="icon-starred" ng-href="#/items/starred/">
|
|
<?php p($l->t('Starred')) ?>
|
|
</a>
|
|
|
|
<div class="app-navigation-entry-utils">
|
|
<ul>
|
|
<li class="app-navigation-entry-utils-counter"
|
|
ng-show="Navigation.isStarredUnread()"
|
|
title="{{ Navigation.getStarredCount() }}">
|
|
{{ Navigation.getStarredCount() | unreadCountFormatter }}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</li>
|