Thank you!
Example:
Code: Select all
<h2 class="searchH2">Search Results For</h2>
<div class="titlehr"></div>
Keywords: "{$phrase}"<br /><br />
{if $itemcount > 0}
{foreach from=$results item=entry}
<div class="search_result">
<h3>
<a href="{$entry->url}">{$entry->urltxt}</a>
</h3>
<p style="" class="description">
{$entry->summary}...
</p>
</div>
{/foreach}
{else}
<p><strong>{$noresultsfound}</strong></p>
{/if}