From: nupplaPhil Date: Wed, 22 Jan 2020 23:16:34 +0000 (+0100) Subject: Move templates into sub-dir "notifications" X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=5c4eb2b2c90a343081452870dd9cf9f8ab718f96;p=friendica.git Move templates into sub-dir "notifications" --- diff --git a/src/Module/BaseNotifications.php b/src/Module/BaseNotifications.php index f1321dfec3..fde4828e27 100644 --- a/src/Module/BaseNotifications.php +++ b/src/Module/BaseNotifications.php @@ -127,7 +127,7 @@ abstract class BaseNotifications extends BaseModule // Set the pager $pager = new Pager(DI::args()->getQueryString(), self::ITEMS_PER_PAGE); - $notif_tpl = Renderer::getMarkupTemplate('notifications.tpl'); + $notif_tpl = Renderer::getMarkupTemplate('notifications/notifications.tpl'); return Renderer::replaceMacros($notif_tpl, [ '$notif_header' => $notif_header ?? DI::l10n()->t('Notifications'), '$tabs' => $tabs, diff --git a/src/Module/Notifications/Introductions.php b/src/Module/Notifications/Introductions.php index b22df920bc..3a7499a1e5 100644 --- a/src/Module/Notifications/Introductions.php +++ b/src/Module/Notifications/Introductions.php @@ -44,8 +44,8 @@ class Introductions extends BaseNotifications $notifs = $notif_result['notifs'] ?? []; $notif_header = $notif_result['header'] ?? ''; - $sugg = Renderer::getMarkupTemplate('suggestions.tpl'); - $tpl = Renderer::getMarkupTemplate('intros.tpl'); + $sugg = Renderer::getMarkupTemplate('notifications/suggestions.tpl'); + $tpl = Renderer::getMarkupTemplate('notifications/intros.tpl'); // The link to switch between ignored and normal connection requests $notif_show_lnk = [ @@ -111,7 +111,7 @@ class Introductions extends BaseNotifications $helptext3 = DI::l10n()->t('Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed.', $notif['name']); } - $dfrn_tpl = Renderer::getMarkupTemplate('netfriend.tpl'); + $dfrn_tpl = Renderer::getMarkupTemplate('notifications/netfriend.tpl'); $dfrn_text = Renderer::replaceMacros($dfrn_tpl, [ '$intro_id' => $notif['intro_id'], '$friend_selected' => $friend_selected, diff --git a/src/Module/Notifications/Notifications.php b/src/Module/Notifications/Notifications.php index 50995645c3..bfccbd4e70 100644 --- a/src/Module/Notifications/Notifications.php +++ b/src/Module/Notifications/Notifications.php @@ -80,15 +80,15 @@ class Notifications extends BaseNotifications // notification and apply the correct template according to the notificationtype (label). foreach ($notifs['notifications'] as $notif) { $notification_templates = [ - 'like' => 'notifications_likes_item.tpl', - 'dislike' => 'notifications_dislikes_item.tpl', - 'attend' => 'notifications_attend_item.tpl', - 'attendno' => 'notifications_attend_item.tpl', - 'attendmaybe' => 'notifications_attend_item.tpl', - 'friend' => 'notifications_friends_item.tpl', - 'comment' => 'notifications_comments_item.tpl', - 'post' => 'notifications_posts_item.tpl', - 'notify' => 'notify.tpl', + 'like' => 'notifications/likes_item.tpl', + 'dislike' => 'notifications/dislikes_item.tpl', + 'attend' => 'notifications/attend_item.tpl', + 'attendno' => 'notifications/attend_item.tpl', + 'attendmaybe' => 'notifications/attend_item.tpl', + 'friend' => 'notifications/friends_item.tpl', + 'comment' => 'notifications/comments_item.tpl', + 'post' => 'notifications/posts_item.tpl', + 'notify' => 'notifications/notify.tpl', ]; $tpl_notif = Renderer::getMarkupTemplate($notification_templates[$notif['label']]); diff --git a/view/templates/intros.tpl b/view/templates/intros.tpl deleted file mode 100644 index 1f7f838bcf..0000000000 --- a/view/templates/intros.tpl +++ /dev/null @@ -1,32 +0,0 @@ -

{{$header}}

- -
- -

{{$str_notifytype}} {{$notify_type}}

-{{$fullname}} -
{{$lbl_url}}
{{$url}}
-{{if $location}}
{{$lbl_location}}
{{$location}}
{{/if}} -{{if $gender}}
{{$lbl_gender}}
{{$gender}}
{{/if}} -{{if $keywords}}
{{$lbl_keywords}}
{{$keywords}}
{{/if}} -{{if $about}}
{{$lbl_about}}
{{$about nofilter}}
{{/if}} -
{{$lbl_knowyou}} {{$knowyou}}
-
{{$note}}
-
-
- -{{if $discard}}{{/if}} -
-
- -
-{{include file="field_checkbox.tpl" field=$hidden}} - - - - -{{$dfrn_text nofilter}} - - -
-
-
diff --git a/view/templates/netfriend.tpl b/view/templates/netfriend.tpl deleted file mode 100644 index 465d7eb2ba..0000000000 --- a/view/templates/netfriend.tpl +++ /dev/null @@ -1,19 +0,0 @@ - -
-

{{$approve_as1}}

-

{{$approve_as2}}

-

{{$approve_as3}}

-
- -
- - -
-
-
-
- - -
-
-
diff --git a/view/templates/notifications.tpl b/view/templates/notifications.tpl deleted file mode 100644 index 9438db682c..0000000000 --- a/view/templates/notifications.tpl +++ /dev/null @@ -1,25 +0,0 @@ - - -

{{$notif_header}}

- -{{if $tabs }}{{include file="common_tabs.tpl"}}{{/if}} - -
- {{* The "show ignored" link *}} - {{if $notif_show_lnk}}{{$notif_show_lnk.text}}{{/if}} - - {{* The notifications *}} - {{if $notif_content}} - {{foreach $notif_content as $notification}} - {{$notification nofilter}} - {{/foreach}} - {{/if}} - - {{* If no notifications messages available *}} - {{if $notif_nocontent}} -
{{$notif_nocontent}}
- {{/if}} - - {{* The pager *}} - {{$notif_paginate nofilter}} -
diff --git a/view/templates/notifications/attend_item.tpl b/view/templates/notifications/attend_item.tpl new file mode 100644 index 0000000000..6fb69ed681 --- /dev/null +++ b/view/templates/notifications/attend_item.tpl @@ -0,0 +1,4 @@ + +
+ {{$item_text nofilter}} {{$item_ago}} +
\ No newline at end of file diff --git a/view/templates/notifications/comments_item.tpl b/view/templates/notifications/comments_item.tpl new file mode 100644 index 0000000000..9df1554651 --- /dev/null +++ b/view/templates/notifications/comments_item.tpl @@ -0,0 +1,4 @@ + +
+ {{$item_text nofilter}} {{$item_ago}} +
\ No newline at end of file diff --git a/view/templates/notifications/dislikes_item.tpl b/view/templates/notifications/dislikes_item.tpl new file mode 100644 index 0000000000..9df1554651 --- /dev/null +++ b/view/templates/notifications/dislikes_item.tpl @@ -0,0 +1,4 @@ + +
+ {{$item_text nofilter}} {{$item_ago}} +
\ No newline at end of file diff --git a/view/templates/notifications/friends_item.tpl b/view/templates/notifications/friends_item.tpl new file mode 100644 index 0000000000..9df1554651 --- /dev/null +++ b/view/templates/notifications/friends_item.tpl @@ -0,0 +1,4 @@ + +
+ {{$item_text nofilter}} {{$item_ago}} +
\ No newline at end of file diff --git a/view/templates/notifications/intros.tpl b/view/templates/notifications/intros.tpl new file mode 100644 index 0000000000..1f7f838bcf --- /dev/null +++ b/view/templates/notifications/intros.tpl @@ -0,0 +1,32 @@ +

{{$header}}

+ +
+ +

{{$str_notifytype}} {{$notify_type}}

+{{$fullname}} +
{{$lbl_url}}
{{$url}}
+{{if $location}}
{{$lbl_location}}
{{$location}}
{{/if}} +{{if $gender}}
{{$lbl_gender}}
{{$gender}}
{{/if}} +{{if $keywords}}
{{$lbl_keywords}}
{{$keywords}}
{{/if}} +{{if $about}}
{{$lbl_about}}
{{$about nofilter}}
{{/if}} +
{{$lbl_knowyou}} {{$knowyou}}
+
{{$note}}
+
+
+ +{{if $discard}}{{/if}} +
+
+ +
+{{include file="field_checkbox.tpl" field=$hidden}} + + + + +{{$dfrn_text nofilter}} + + +
+
+
diff --git a/view/templates/notifications/likes_item.tpl b/view/templates/notifications/likes_item.tpl new file mode 100644 index 0000000000..6fb69ed681 --- /dev/null +++ b/view/templates/notifications/likes_item.tpl @@ -0,0 +1,4 @@ + +
+ {{$item_text nofilter}} {{$item_ago}} +
\ No newline at end of file diff --git a/view/templates/notifications/netfriend.tpl b/view/templates/notifications/netfriend.tpl new file mode 100644 index 0000000000..465d7eb2ba --- /dev/null +++ b/view/templates/notifications/netfriend.tpl @@ -0,0 +1,19 @@ + +
+

{{$approve_as1}}

+

{{$approve_as2}}

+

{{$approve_as3}}

+
+ +
+ + +
+
+
+
+ + +
+
+
diff --git a/view/templates/notifications/network_item.tpl b/view/templates/notifications/network_item.tpl new file mode 100644 index 0000000000..0373b0d01a --- /dev/null +++ b/view/templates/notifications/network_item.tpl @@ -0,0 +1,4 @@ + +
+ {{$item_text nofilter}} {{$item_ago}} +
diff --git a/view/templates/notifications/notifications.tpl b/view/templates/notifications/notifications.tpl new file mode 100644 index 0000000000..9438db682c --- /dev/null +++ b/view/templates/notifications/notifications.tpl @@ -0,0 +1,25 @@ + + +

{{$notif_header}}

+ +{{if $tabs }}{{include file="common_tabs.tpl"}}{{/if}} + +
+ {{* The "show ignored" link *}} + {{if $notif_show_lnk}}{{$notif_show_lnk.text}}{{/if}} + + {{* The notifications *}} + {{if $notif_content}} + {{foreach $notif_content as $notification}} + {{$notification nofilter}} + {{/foreach}} + {{/if}} + + {{* If no notifications messages available *}} + {{if $notif_nocontent}} +
{{$notif_nocontent}}
+ {{/if}} + + {{* The pager *}} + {{$notif_paginate nofilter}} +
diff --git a/view/templates/notifications/notify.tpl b/view/templates/notifications/notify.tpl new file mode 100644 index 0000000000..9df1554651 --- /dev/null +++ b/view/templates/notifications/notify.tpl @@ -0,0 +1,4 @@ + +
+ {{$item_text nofilter}} {{$item_ago}} +
\ No newline at end of file diff --git a/view/templates/notifications/posts_item.tpl b/view/templates/notifications/posts_item.tpl new file mode 100644 index 0000000000..9df1554651 --- /dev/null +++ b/view/templates/notifications/posts_item.tpl @@ -0,0 +1,4 @@ + +
+ {{$item_text nofilter}} {{$item_ago}} +
\ No newline at end of file diff --git a/view/templates/notifications/suggestions.tpl b/view/templates/notifications/suggestions.tpl new file mode 100644 index 0000000000..44fe865104 --- /dev/null +++ b/view/templates/notifications/suggestions.tpl @@ -0,0 +1,22 @@ + + +
+ +

{{$str_notifytype}} {{$notify_type}}

+{{if $madeby}}
{{$lbl_madeby}} {{$madeby}}
{{/if}} +
{{$fullname}}
+{{$fullname}} +
{{$note}}
+
+
+ + +
+
+ +
+{{include file="field_checkbox.tpl" field=$hidden}} + +
+
+
diff --git a/view/templates/notifications_attend_item.tpl b/view/templates/notifications_attend_item.tpl deleted file mode 100644 index 6fb69ed681..0000000000 --- a/view/templates/notifications_attend_item.tpl +++ /dev/null @@ -1,4 +0,0 @@ - -
- {{$item_text nofilter}} {{$item_ago}} -
\ No newline at end of file diff --git a/view/templates/notifications_comments_item.tpl b/view/templates/notifications_comments_item.tpl deleted file mode 100644 index 9df1554651..0000000000 --- a/view/templates/notifications_comments_item.tpl +++ /dev/null @@ -1,4 +0,0 @@ - -
- {{$item_text nofilter}} {{$item_ago}} -
\ No newline at end of file diff --git a/view/templates/notifications_dislikes_item.tpl b/view/templates/notifications_dislikes_item.tpl deleted file mode 100644 index 9df1554651..0000000000 --- a/view/templates/notifications_dislikes_item.tpl +++ /dev/null @@ -1,4 +0,0 @@ - -
- {{$item_text nofilter}} {{$item_ago}} -
\ No newline at end of file diff --git a/view/templates/notifications_friends_item.tpl b/view/templates/notifications_friends_item.tpl deleted file mode 100644 index 9df1554651..0000000000 --- a/view/templates/notifications_friends_item.tpl +++ /dev/null @@ -1,4 +0,0 @@ - -
- {{$item_text nofilter}} {{$item_ago}} -
\ No newline at end of file diff --git a/view/templates/notifications_likes_item.tpl b/view/templates/notifications_likes_item.tpl deleted file mode 100644 index 6fb69ed681..0000000000 --- a/view/templates/notifications_likes_item.tpl +++ /dev/null @@ -1,4 +0,0 @@ - -
- {{$item_text nofilter}} {{$item_ago}} -
\ No newline at end of file diff --git a/view/templates/notifications_network_item.tpl b/view/templates/notifications_network_item.tpl deleted file mode 100644 index 0373b0d01a..0000000000 --- a/view/templates/notifications_network_item.tpl +++ /dev/null @@ -1,4 +0,0 @@ - -
- {{$item_text nofilter}} {{$item_ago}} -
diff --git a/view/templates/notifications_posts_item.tpl b/view/templates/notifications_posts_item.tpl deleted file mode 100644 index 9df1554651..0000000000 --- a/view/templates/notifications_posts_item.tpl +++ /dev/null @@ -1,4 +0,0 @@ - -
- {{$item_text nofilter}} {{$item_ago}} -
\ No newline at end of file diff --git a/view/templates/notify.tpl b/view/templates/notify.tpl deleted file mode 100644 index 9df1554651..0000000000 --- a/view/templates/notify.tpl +++ /dev/null @@ -1,4 +0,0 @@ - -
- {{$item_text nofilter}} {{$item_ago}} -
\ No newline at end of file diff --git a/view/templates/suggestions.tpl b/view/templates/suggestions.tpl deleted file mode 100644 index 44fe865104..0000000000 --- a/view/templates/suggestions.tpl +++ /dev/null @@ -1,22 +0,0 @@ - - -
- -

{{$str_notifytype}} {{$notify_type}}

-{{if $madeby}}
{{$lbl_madeby}} {{$madeby}}
{{/if}} -
{{$fullname}}
-{{$fullname}} -
{{$note}}
-
-
- - -
-
- -
-{{include file="field_checkbox.tpl" field=$hidden}} - -
-
-
diff --git a/view/theme/frio/templates/intros.tpl b/view/theme/frio/templates/intros.tpl deleted file mode 100644 index a8a033c9b5..0000000000 --- a/view/theme/frio/templates/intros.tpl +++ /dev/null @@ -1,85 +0,0 @@ - -{{* template incomming contact request and suggested contacts *}} - -
- - {{* Contact Photo *}} - - -
- {{* The intro actions like approve, ignore, discard intro*}} - - -
{{$str_notifytype}} {{$notify_type}}
- {{* if the contact was suggestested by another contact, the contact who made the suggestion is displayed*}} - {{if $madeby}}
{{$lbl_madeby}} {{$madeby}}
{{/if}} - - {{* Additional information of the contact *}} - - - {{* Additional information of the contact for mobile view *}} - - - {{* This sections contains special settings for contact approval. We hide it by default and load this section in - a bootstrap modal in the case of approval *}} - -
- - {{* On mobile touch devices we use buttons for approve, ingnore && discard to have a better UX *}} - {{if $APP->is_mobile}} -
-
- - {{if $discard}} {{/if}} -
- -
-
- {{/if}} -
-
diff --git a/view/theme/frio/templates/notifications.tpl b/view/theme/frio/templates/notifications.tpl deleted file mode 100644 index 1be92c4b24..0000000000 --- a/view/theme/frio/templates/notifications.tpl +++ /dev/null @@ -1,30 +0,0 @@ - - - -
- {{include file="section_title.tpl" title=$notif_header}} - - {{if $tabs }}{{include file="common_tabs.tpl"}}{{/if}} - -
- {{* The "show ignored" link *}} - {{if $notif_show_lnk}}{{$notif_show_lnk.text}}{{/if}} - - {{* The notifications *}} - {{if $notif_content}} -
    - {{foreach $notif_content as $notification}} -
  • {{$notification nofilter}}
  • - {{/foreach}} -
- {{/if}} - - {{* If no notifications messages available *}} - {{if $notif_nocontent}} -
{{$notif_nocontent}}
- {{/if}} -
- - {{* The pager *}} - {{$notif_paginate nofilter}} -
diff --git a/view/theme/frio/templates/notifications/attend_item.tpl b/view/theme/frio/templates/notifications/attend_item.tpl new file mode 100644 index 0000000000..252b61c776 --- /dev/null +++ b/view/theme/frio/templates/notifications/attend_item.tpl @@ -0,0 +1,2 @@ + +{{include file="notifications/notify.tpl"}} diff --git a/view/theme/frio/templates/notifications/comments_item.tpl b/view/theme/frio/templates/notifications/comments_item.tpl new file mode 100644 index 0000000000..252b61c776 --- /dev/null +++ b/view/theme/frio/templates/notifications/comments_item.tpl @@ -0,0 +1,2 @@ + +{{include file="notifications/notify.tpl"}} diff --git a/view/theme/frio/templates/notifications/dislikes_item.tpl b/view/theme/frio/templates/notifications/dislikes_item.tpl new file mode 100644 index 0000000000..252b61c776 --- /dev/null +++ b/view/theme/frio/templates/notifications/dislikes_item.tpl @@ -0,0 +1,2 @@ + +{{include file="notifications/notify.tpl"}} diff --git a/view/theme/frio/templates/notifications/friends_item.tpl b/view/theme/frio/templates/notifications/friends_item.tpl new file mode 100644 index 0000000000..252b61c776 --- /dev/null +++ b/view/theme/frio/templates/notifications/friends_item.tpl @@ -0,0 +1,2 @@ + +{{include file="notifications/notify.tpl"}} diff --git a/view/theme/frio/templates/notifications/intros.tpl b/view/theme/frio/templates/notifications/intros.tpl new file mode 100644 index 0000000000..a8a033c9b5 --- /dev/null +++ b/view/theme/frio/templates/notifications/intros.tpl @@ -0,0 +1,85 @@ + +{{* template incomming contact request and suggested contacts *}} + +
+ + {{* Contact Photo *}} + + +
+ {{* The intro actions like approve, ignore, discard intro*}} + + +
{{$str_notifytype}} {{$notify_type}}
+ {{* if the contact was suggestested by another contact, the contact who made the suggestion is displayed*}} + {{if $madeby}}
{{$lbl_madeby}} {{$madeby}}
{{/if}} + + {{* Additional information of the contact *}} + + + {{* Additional information of the contact for mobile view *}} + + + {{* This sections contains special settings for contact approval. We hide it by default and load this section in + a bootstrap modal in the case of approval *}} + +
+ + {{* On mobile touch devices we use buttons for approve, ingnore && discard to have a better UX *}} + {{if $APP->is_mobile}} +
+
+ + {{if $discard}} {{/if}} +
+ +
+
+ {{/if}} +
+
diff --git a/view/theme/frio/templates/notifications/likes_item.tpl b/view/theme/frio/templates/notifications/likes_item.tpl new file mode 100644 index 0000000000..252b61c776 --- /dev/null +++ b/view/theme/frio/templates/notifications/likes_item.tpl @@ -0,0 +1,2 @@ + +{{include file="notifications/notify.tpl"}} diff --git a/view/theme/frio/templates/notifications/network_item.tpl b/view/theme/frio/templates/notifications/network_item.tpl new file mode 100644 index 0000000000..252b61c776 --- /dev/null +++ b/view/theme/frio/templates/notifications/network_item.tpl @@ -0,0 +1,2 @@ + +{{include file="notifications/notify.tpl"}} diff --git a/view/theme/frio/templates/notifications/notifications.tpl b/view/theme/frio/templates/notifications/notifications.tpl new file mode 100644 index 0000000000..591d0c3a83 --- /dev/null +++ b/view/theme/frio/templates/notifications/notifications.tpl @@ -0,0 +1,30 @@ + + + +
+ {{include file="section_title.tpl" title=$notif_header}} + + {{if $tabs }}{{include file="common_tabs.tpl"}}{{/if}} + +
+ {{* The "show ignored" link *}} + {{if $notif_show_lnk}}{{$notif_show_lnk.text}}{{/if}} + + {{* The notifications *}} + {{if $notif_content}} +
    + {{foreach $notif_content as $notification}} +
  • {{$notification nofilter}}
  • + {{/foreach}} +
+ {{/if}} + + {{* If no notifications messages available *}} + {{if $notif_nocontent}} +
{{$notif_nocontent}}
+ {{/if}} +
+ + {{* The pager *}} + {{$notif_paginate nofilter}} +
diff --git a/view/theme/frio/templates/notifications/notify.tpl b/view/theme/frio/templates/notifications/notify.tpl new file mode 100644 index 0000000000..58f3b0da9f --- /dev/null +++ b/view/theme/frio/templates/notifications/notify.tpl @@ -0,0 +1,12 @@ + +
+
+ +
+ +
diff --git a/view/theme/frio/templates/notifications/posts_item.tpl b/view/theme/frio/templates/notifications/posts_item.tpl new file mode 100644 index 0000000000..252b61c776 --- /dev/null +++ b/view/theme/frio/templates/notifications/posts_item.tpl @@ -0,0 +1,2 @@ + +{{include file="notifications/notify.tpl"}} diff --git a/view/theme/frio/templates/notifications/suggestions.tpl b/view/theme/frio/templates/notifications/suggestions.tpl new file mode 100644 index 0000000000..9595190e0b --- /dev/null +++ b/view/theme/frio/templates/notifications/suggestions.tpl @@ -0,0 +1,2 @@ + +{{include file="notifications/intros.tpl"}} \ No newline at end of file diff --git a/view/theme/frio/templates/notifications_attend_item.tpl b/view/theme/frio/templates/notifications_attend_item.tpl deleted file mode 100644 index 680b29a27c..0000000000 --- a/view/theme/frio/templates/notifications_attend_item.tpl +++ /dev/null @@ -1,2 +0,0 @@ - -{{include file="notify.tpl"}} diff --git a/view/theme/frio/templates/notifications_comments_item.tpl b/view/theme/frio/templates/notifications_comments_item.tpl deleted file mode 100644 index 680b29a27c..0000000000 --- a/view/theme/frio/templates/notifications_comments_item.tpl +++ /dev/null @@ -1,2 +0,0 @@ - -{{include file="notify.tpl"}} diff --git a/view/theme/frio/templates/notifications_dislikes_item.tpl b/view/theme/frio/templates/notifications_dislikes_item.tpl deleted file mode 100644 index 680b29a27c..0000000000 --- a/view/theme/frio/templates/notifications_dislikes_item.tpl +++ /dev/null @@ -1,2 +0,0 @@ - -{{include file="notify.tpl"}} diff --git a/view/theme/frio/templates/notifications_friends_item.tpl b/view/theme/frio/templates/notifications_friends_item.tpl deleted file mode 100644 index 680b29a27c..0000000000 --- a/view/theme/frio/templates/notifications_friends_item.tpl +++ /dev/null @@ -1,2 +0,0 @@ - -{{include file="notify.tpl"}} diff --git a/view/theme/frio/templates/notifications_likes_item.tpl b/view/theme/frio/templates/notifications_likes_item.tpl deleted file mode 100644 index 680b29a27c..0000000000 --- a/view/theme/frio/templates/notifications_likes_item.tpl +++ /dev/null @@ -1,2 +0,0 @@ - -{{include file="notify.tpl"}} diff --git a/view/theme/frio/templates/notifications_network_item.tpl b/view/theme/frio/templates/notifications_network_item.tpl deleted file mode 100644 index 680b29a27c..0000000000 --- a/view/theme/frio/templates/notifications_network_item.tpl +++ /dev/null @@ -1,2 +0,0 @@ - -{{include file="notify.tpl"}} diff --git a/view/theme/frio/templates/notifications_posts_item.tpl b/view/theme/frio/templates/notifications_posts_item.tpl deleted file mode 100644 index 680b29a27c..0000000000 --- a/view/theme/frio/templates/notifications_posts_item.tpl +++ /dev/null @@ -1,2 +0,0 @@ - -{{include file="notify.tpl"}} diff --git a/view/theme/frio/templates/notify.tpl b/view/theme/frio/templates/notify.tpl deleted file mode 100644 index 58f3b0da9f..0000000000 --- a/view/theme/frio/templates/notify.tpl +++ /dev/null @@ -1,12 +0,0 @@ - -
-
- -
- -
diff --git a/view/theme/frio/templates/suggestions.tpl b/view/theme/frio/templates/suggestions.tpl deleted file mode 100644 index e2399eb49e..0000000000 --- a/view/theme/frio/templates/suggestions.tpl +++ /dev/null @@ -1,2 +0,0 @@ - -{{include file="intros.tpl"}} \ No newline at end of file