LuckyCoinkydink/templates/bootstrap4/plugin_staticpage_searchresults.tpl
Matthias Mees 1ae46203c3 Replace idea theme with bootstrap4 theme
- Add new bootstrap4 theme
- Move idea theme to spartacus
2018-03-25 10:57:21 +02:00

12 lines
430 B
Smarty

{if $staticpage_results}
<div class="pages_found">
<h3>{$CONST.STATICPAGE_SEARCHRESULTS|sprintf:$staticpage_searchresults}</h3>
<dl>
{foreach from=$staticpage_results item="result"}
<dt><a href="{$result.permalink|escape}" title="{$result.pagetitle|escape} ({$result.realname})">{$result.headline}</a></dt>
<dd>{$result.content|strip_tags|truncate:200:"..."}</dd>
{/foreach}
</dl>
</div>
{/if}