themes-community/facepark/saved_searches_aside.tpl
Tobias Diekershoff eb8f74fc4f added facepark and cleardia themes
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.
2024-01-19 23:54:55 +01:00

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=&amp;remove=1&amp;search=$search.encodedterm"></a>
<a id="saved-search-term-$search.id" class="savedsearchterm" href="network/?f=&amp;search=$search.encodedterm">$search.term</a>
</li>
{{ endfor }}
</ul>
<div class="clear"></div>
</div>