summaryrefslogtreecommitdiffstats
path: root/templates/part.navigation.sharedfeed.php
blob: 6767b407b6e1f596bc927abeb148421dec5e79dd (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.isSharedActive(),
        unread: Navigation.isSharedUnread()
    }"
    class="with-counter starred-feed">

    <a class="icon-shared" ng-href="#/items/shared/">
       <?php p($l->t('Shared')) ?>
    </a>

    <div class="app-navigation-entry-utils">
        <ul>
            <li class="app-navigation-entry-utils-counter"
                ng-show="Navigation.isSharedUnread()"
                title="{{ Navigation.getSharedCount() }}">
                {{ Navigation.getSharedCount() | unreadCountFormatter }}
            </li>
        </ul>
    </div>
</li>