1
0
This repository has been archived on 2025-06-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
LuckyCoinkydink/templates/bulletproof/plugin_staticpage_searchresults.tpl

11 lines
519 B
Smarty

<div class="staticpage_results" style="text-align: left">
<p class="staticpage_result_header">{$CONST.STATICPAGE_SEARCHRESULTS|sprintf:$staticpage_searchresults}</p>
<dl class="staticpage_result">
{foreach from=$staticpage_results item="result"}
<dt><strong><a href="{$result.permalink|@escape}" title="{$result.pagetitle|@escape}">{$result.headline}</a></strong> ({$result.realname})</dt>
<dd>{$result.content|@strip_tags|@strip|@truncate:200:" ... "}</dd>
{/foreach}
</dl>
</div>