summaryrefslogtreecommitdiffstats
path: root/templates/part.feed.unread.php
blob: ff91c55c112564a0fedcff0e56f1f2f5a92ab0e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<li ng-class="{
		active: Navigation.isSubscriptionsActive(),
		unread: Navigation.getUnreadCount() > 0
	}">

	<a class="rss-icon" href="#/items" ng-if="!Navigation.isShowAll()">
	   <?php p($l->t('Unread articles'))?>
	</a>

	<a class="rss-icon" href="#/items" ng-if="Navigation.isShowAll()">
	   <?php p($l->t('All articles'))?>
	</a>

	<div class="utils">

	</div>
	<span class="utils">
		<span class="unread-counter" ng-show="getUnreadCount() > 0">
			{{ Navigation.getUnreadCount() | unreadCountFormatter }}
		</span>
		<!--
		<button class="svg action mark-read-icon"
			ng-click="Navigation.markRead()"
			title="<?php p($l->t('Mark read')) ?>"
			ng-show="getTotalUnreadCount() > 0"
			oc-tooltip data-placement="bottom"></button>
		-->
	</span>
</li>