]> git.mxchange.org Git - friendica.git/commitdiff
Debug switch added, output added
authorMichael <heluecht@pirati.ca>
Tue, 3 Mar 2020 21:25:18 +0000 (21:25 +0000)
committerMichael <heluecht@pirati.ca>
Tue, 3 Mar 2020 21:25:18 +0000 (21:25 +0000)
view/theme/frio/templates/sub/direction.tpl [new file with mode: 0644]
view/theme/vier/templates/sub/direction.tpl [new file with mode: 0644]

diff --git a/view/theme/frio/templates/sub/direction.tpl b/view/theme/frio/templates/sub/direction.tpl
new file mode 100644 (file)
index 0000000..be34a1e
--- /dev/null
@@ -0,0 +1,10 @@
+{{if $direction.direction > 0}}
+<span class="direction">
+       &bull;
+       {{if $direction.direction == 1}}
+               <i class="fa fa-inbox" aria-hidden="true" title="{{$direction.title}}"></i>
+       {{elseif $direction.direction == 2}}
+               <i class="fa fa-download" aria-hidden="true" title="{{$direction.title}}"></i>
+       {{/if}}
+</span>
+{{/if}}
diff --git a/view/theme/vier/templates/sub/direction.tpl b/view/theme/vier/templates/sub/direction.tpl
new file mode 100644 (file)
index 0000000..8591026
--- /dev/null
@@ -0,0 +1,10 @@
+{{if $direction.direction > 0}}
+<span class="direction">
+       &bull;
+       {{if $direction.direction == 1}}
+               <i class="icon-inbox" aria-hidden="true" title="{{$direction.title}}"></i>
+       {{elseif $direction.direction == 2}}
+               <i class="icon-download" aria-hidden="true" title="{{$direction.title}}"></i>
+       {{/if}}
+</span>
+{{/if}}