]> git.mxchange.org Git - friendica.git/blob - view/templates/notifications/notifications.tpl
Merge branch '2021.03-rc' into copyright-2021
[friendica.git] / view / templates / notifications / notifications.tpl
1
2
3 <h1>{{$header}}</h1>
4
5 {{if $tabs }}{{include file="common_tabs.tpl"}}{{/if}}
6
7 <div class="notif-network-wrapper">
8         {{* The "show ignored" link *}}
9         {{if $showLink}}<a href="{{$showLink.href}}" id="notifications-show-hide-link">{{$showLink.text}}</a>{{/if}}
10
11         {{* The notifications *}}
12         {{if $notifications}}
13         {{foreach $notifications as $notification}}
14                 {{$notification nofilter}}
15         {{/foreach}}
16         {{/if}}
17
18         {{* If no notifications messages available *}}
19         {{if $noContent}}
20                 <div class="notification_nocontent">{{$noContent}}</div>
21         {{/if}}
22
23         {{* The pager *}}
24         {{$paginate nofilter}}
25 </div>