Pony.fm/public/templates/directives/notification-list.html

7 lines
477 B
HTML
Raw Normal View History

2016-06-02 01:00:43 +02:00
<div class="notif-list">
2016-06-07 18:49:00 +02:00
<div ng-repeat="notification in notifications" class="notification" ng-class="{'unread': !notification.is_read}">
2016-06-02 01:00:43 +02:00
<a href="{{ ::notification.url }}" class="img-link"><img pfm-src-loader="::notification.thumbnail_url" pfm-src-size="thumbnail"></a>
<a href="{{ ::notification.url }}" class="message"><p>{{ ::notification.text }}</p></a>
</div>
<p ng-show="notifications.length < 1" class="error">No notifications :(</p>
2016-05-27 21:38:59 +02:00
</div>