LuckyCoinkydink/templates/next/plugin_staticpage_searchresults.tpl
Matthias Mees 9290ee29da Move/rename 2k15 to next
The name has been changed to protect the innocent. (Meaning the
users. From confusion.)
2015-02-11 14:32:24 +01:00

14 lines
599 B
Smarty

<aside class="search-results clearfix">
<h3>{$CONST.STATICPAGE_SEARCHRESULTS|sprintf:$staticpage_searchresults}</h3>
{if $staticpage_results}
<ul>
{foreach from=$staticpage_results item="result"}
<li><span><a href="{$result.permalink|escape}" title="{$result.pagetitle|escape}">{$result.headline}</a> ({$result.realname})</span>
{$result.content|strip_tags|strip|truncate:200:" ... "}</li>
{/foreach}
</ul>
{else}
<p class="msg-notice"><span class="icon-info-circled" aria-hidden="true"></span> {$CONST.NO_ENTRIES_TO_PRINT}</p>
{/if}
</aside>