summaryrefslogtreecommitdiffstats
path: root/templates/part.navigation.sharedfeed.php
blob: 316d83db52bebf94ca4dcabcf1358cd55274dbc6 (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 with me')) ?>
    </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>