mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-08-14 12:08:13 +02:00
orig theme renamed to mobile
This commit is contained in:
28
webui/view/theme/mobile/templates/search/load.tpl
Normal file
28
webui/view/theme/mobile/templates/search/load.tpl
Normal file
@@ -0,0 +1,28 @@
|
||||
|
||||
<div id="messagelistcontainer" class="boxlistcontent">
|
||||
|
||||
<div id="results">
|
||||
|
||||
<div class="resultrow">
|
||||
<?php if(count($terms) > 0){ ?>
|
||||
|
||||
<?php } else if(count($terms) == 0) { ?>
|
||||
<div class="alert">
|
||||
<strong><?php print $text_empty_search_result; ?></strong>
|
||||
</div>
|
||||
<?php } ?>
|
||||
</div>
|
||||
|
||||
<?php foreach($terms as $term) {
|
||||
parse_str($term['term'], $s);
|
||||
if(isset($s['search']) && $s['search']) {
|
||||
?>
|
||||
<div class="resultrow center">
|
||||
<a href="#" onclick="Piler.load_search_results_for_saved_query('<?php print urlencode($term['term']); ?>');"><?php print $s['search']; ?></a></br />
|
||||
</div>
|
||||
<?php } } ?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
Reference in New Issue
Block a user