forked from friendica/themes-community
Tobias Diekershoff
c64a6f2949
Two themes from 2012, cleardia derived from facepark. Tony Baldwin had them archived at https://github.com/tonybaldwin/friendica-themes-extra/tree/master/facepark but they were not created by him.
15 lines
582 B
Smarty
Executable file
15 lines
582 B
Smarty
Executable file
<div class="widget" id="saved-search-list">
|
|
<h3 id="search">$title</h3>
|
|
$searchbox
|
|
|
|
<ul id="saved-search-ul">
|
|
{{ for $saved as $search }}
|
|
<li class="saved-search-li clear">
|
|
<a title="$search.delete" onclick="return confirmDelete();" id="drop-saved-search-term-$search.id" class="iconspacer savedsearchdrop " href="network/?f=&remove=1&search=$search.encodedterm"></a>
|
|
<a id="saved-search-term-$search.id" class="savedsearchterm" href="network/?f=&search=$search.encodedterm">$search.term</a>
|
|
</li>
|
|
{{ endfor }}
|
|
</ul>
|
|
<div class="clear"></div>
|
|
</div>
|