aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/quattro/tpl/saved_searches_aside.tpl
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-08-09 19:09:55 -0700
committerfriendica <info@friendica.com>2012-08-09 19:09:55 -0700
commitf2a7fcf8220ef497c8f39f0c9ec3175757f53128 (patch)
tree5341c592ee54f231bb5268537ce345e831f50cb8 /view/theme/quattro/tpl/saved_searches_aside.tpl
parent0292d46e5de06529012ebb14ce934fb476d595d0 (diff)
downloadvolse-hubzilla-f2a7fcf8220ef497c8f39f0c9ec3175757f53128.tar.gz
volse-hubzilla-f2a7fcf8220ef497c8f39f0c9ec3175757f53128.tar.bz2
volse-hubzilla-f2a7fcf8220ef497c8f39f0c9ec3175757f53128.zip
more theme modularisation and css/js management
Diffstat (limited to 'view/theme/quattro/tpl/saved_searches_aside.tpl')
-rw-r--r--view/theme/quattro/tpl/saved_searches_aside.tpl15
1 files changed, 15 insertions, 0 deletions
diff --git a/view/theme/quattro/tpl/saved_searches_aside.tpl b/view/theme/quattro/tpl/saved_searches_aside.tpl
new file mode 100644
index 000000000..9c10a26de
--- /dev/null
+++ b/view/theme/quattro/tpl/saved_searches_aside.tpl
@@ -0,0 +1,15 @@
+<div id="saved-search-list" class="widget">
+ <h3 class="title">$title</h3>
+
+ <ul id="saved-search-ul">
+ {{ for $saved as $search }}
+ <li class="tool {{if $search.selected}}selected{{endif}}">
+ <a href="network/?f=&search=$search.encodedterm" class="label" >$search.term</a>
+ <a href="network/?f=&remove=1&search=$search.encodedterm" class="action icon s10 delete" title="$search.delete" onclick="return confirmDelete();"></a>
+ </li>
+ {{ endfor }}
+ </ul>
+
+ $searchbox
+
+</div>