summaryrefslogtreecommitdiffstats
path: root/templates/part.navigation.starredfeed.php
blob: adf3434dbf33ddb28c98991c1b8c1098c9084458 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<li ng-class="{
		active: Navigation.isStarredActive(),
		unread: Navigation.getStarredCount() > 0
	}"
	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.getStarredCount() > 0"
                title="{{ Navigation.getStarredCount() }}">
                {{ Navigation.getStarredCount() | unreadCountFormatter }}
            </li>
        </ul>
    </div>
</li>