31 lines
988 B
Smarty
31 lines
988 B
Smarty
<script type="text/javascript" src="../../frameworks/jquery-color/jquery.color.js?v={{$smarty.const.FRIENDICA_VERSION}}"></script>
|
|
<script type="text/javascript" src="../../js/mod_notifications.js?v={{$smarty.const.FRIENDICA_VERSION}}"></script>
|
|
|
|
<div class="generic-page-wrapper">
|
|
{{include file="section_title.tpl" title=$header}}
|
|
|
|
{{if $tabs }}{{include file="common_tabs.tpl"}}{{/if}}
|
|
|
|
<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}}
|
|
<ul class="notif-network-list media-list">
|
|
{{foreach $notifications as $notification}}
|
|
<li>{{$notification nofilter}}</li>
|
|
{{/foreach}}
|
|
</ul>
|
|
{{/if}}
|
|
|
|
{{* If no notifications messages available *}}
|
|
{{if $noContent}}
|
|
<div class="notification_nocontent">{{$noContent}}</div>
|
|
{{/if}}
|
|
</div>
|
|
|
|
{{* The pager *}}
|
|
{{$paginate nofilter}}
|
|
</div>
|