]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/templates/notifications.tpl
Merge branch '2018.12-rc' into task/6208-escape-html-true
[friendica.git] / view / theme / frio / templates / notifications.tpl
1 <script type="text/javascript" src="view/theme/frio/frameworks/jquery-color/jquery.color.js"></script>
2 <script type="text/javascript" src="view/theme/frio/js/mod_notifications.js"></script>
3
4 <div class="generic-page-wrapper">
5         {{include file="section_title.tpl" title=$notif_header}}
6
7         {{if $tabs }}{{include file="common_tabs.tpl"}}{{/if}}
8
9         <div class="notif-network-wrapper">
10                 {{* The "show ignored" link *}}
11                 {{if $notif_show_lnk}}<a href="{{$notif_show_lnk.href}}" id="notifications-show-hide-link">{{$notif_show_lnk.text}}</a>{{/if}}
12
13                 {{* The notifications *}}
14                 {{if $notif_content}}
15                 <ul class="notif-network-list media-list">
16                 {{foreach $notif_content as $notification}}
17                         <li>{{$notification nofilter}}</li>
18                 {{/foreach}}
19                 </ul>
20                 {{/if}}
21
22                 {{* If no notifications messages available *}}
23                 {{if $notif_nocontent}}
24                 <div class="notif_nocontent">{{$notif_nocontent}}</div>
25                 {{/if}}
26         </div>
27
28         {{* The pager *}}
29         {{$notif_paginate nofilter}}
30 </div>