1
0
mirror of https://github.com/chylex/Nextcloud-News.git synced 2024-09-08 00:42:46 +02:00
Nextcloud-News/templates/part.navigation.starredfeed.php
Marco Nassabain a1edb03e19 🔥 Remove changes from front-end for back-end pr
Signed-off-by: Marco Nassabain <marco.nassabain@hotmail.com>
2021-04-08 22:31:21 +02:00

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>