21 lines
546 B
Smarty
21 lines
546 B
Smarty
<div class="liveSearchHolder">
|
|
<div id="live_search_title">{$template_text.live_search.results} ({$item_hits}):</div>
|
|
{if $item_hits > 0}
|
|
<div class="items search_box " style="width:300px;">
|
|
<div>
|
|
{if $item_search}
|
|
{foreach from=$item_search item=item}
|
|
<div class="live_search_item {if $item->cl == 1}live_search_item2{/if}">
|
|
<a href="{$serverProtocol}://{$servername}/kaufen/{$item->short_uri}.html"> {$item->name}</a>
|
|
</div>
|
|
{/foreach}
|
|
{else}
|
|
-
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
|
|
|