friendica/view/templates/notifications/notifications.tpl

26 lines
594 B
Smarty
Raw Normal View History

2013-04-23 13:47:57 +02:00
<h1>{{$header}}</h1>
2013-04-23 13:47:57 +02:00
{{if $tabs }}{{include file="common_tabs.tpl"}}{{/if}}
2013-04-23 13:47:57 +02:00
<div class="notif-network-wrapper">
{{* The "show ignored" link *}}
{{if $showLink}}<a href="{{$showLink.href}}" id="notifications-show-hide-link">{{$showLink.text}}</a>{{/if}}
{{* The notifications *}}
{{if $notifications}}
{{foreach $notifications as $notification}}
{{$notification nofilter}}
{{/foreach}}
{{/if}}
{{* If no notifications messages available *}}
{{if $noContent}}
<div class="notification_nocontent">{{$noContent}}</div>
{{/if}}
2016-08-01 23:04:41 +02:00
{{* The pager *}}
{{$paginate nofilter}}
2013-04-23 13:47:57 +02:00
</div>