1{if $staticpage_results}
2<div class="pages_found">
3    <h3>{$CONST.STATICPAGE_SEARCHRESULTS|sprintf:$staticpage_searchresults}</h3>
4
5    <dl>
6    {foreach from=$staticpage_results item="result"}
7        <dt><a href="{$result.permalink|escape}" title="{$result.pagetitle|escape} ({$result.realname})">{$result.headline}</a></dt>
8        <dd>{$result.content|strip_tags|truncate:200:"..."}</dd>
9    {/foreach}
10    </dl>
11</div>
12{/if}