summaryrefslogtreecommitdiffstats
path: root/templates/part.navigation.starredfeed.php
blob: b970c20b969813a8bfd83aa52a79382b9e750773 (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>