24 lines
741 B
Smarty
24 lines
741 B
Smarty
{if $MENU != ''}
|
|
|
|
<!-- Menu -->
|
|
<div class="sf-contener clearfix">
|
|
<ul class="sf-menu clearfix">
|
|
{$MENU}
|
|
{if $MENU_SEARCH}
|
|
<li class="sf-search noBack" style="float:right">
|
|
<form id="searchbox" action="{$link->getPageLink('search')|escape:'html'}" method="get">
|
|
<p>
|
|
<input type="hidden" name="controller" value="search" />
|
|
<input type="hidden" value="position" name="orderby"/>
|
|
<input type="hidden" value="desc" name="orderway"/>
|
|
<input type="text" name="search_query" value="{if isset($smarty.get.search_query)}{$smarty.get.search_query|escape:'html':'UTF-8'}{/if}" />
|
|
</p>
|
|
</form>
|
|
</li>
|
|
{/if}
|
|
</ul>
|
|
</div>
|
|
<div class="sf-right"> </div>
|
|
|
|
<!--/ Menu -->
|
|
{/if} |