| Server IP : 23.111.136.34 / Your IP : 216.73.216.136 Web Server : Apache System : Linux servidor.eurohost.com.br 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : meusitei ( 1072) PHP Version : 5.6.40 Disable Function : show_source, system, shell_exec, passthru, proc_open MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/meusitei/public_html/central/templates/six/ |
Upload File : |
<form role="form" method="post" action="{routePath('knowledgebase-search')}">
<div class="input-group input-group-lg kb-search">
<input type="text" id="inputKnowledgebaseSearch" name="search" class="form-control" placeholder="What can we help you with?" value="{$searchterm}" />
<span class="input-group-btn">
<input type="submit" id="btnKnowledgebaseSearch" class="btn btn-primary btn-input-padded-responsive" value="{$LANG.search}" />
</span>
</div>
</form>
{if $kbcats}
<h2>{$LANG.knowledgebasecategories}</h2>
<div class="row kbcategories">
{foreach name=kbasecats from=$kbcats item=kbcat}
<div class="col-sm-4">
<a href="{routePath('knowledgebase-category-view',{$kbcat.id},{$kbcat.urlfriendlyname})}">
<span class="glyphicon glyphicon-folder-close"></span> {$kbcat.name} <span class="badge badge-info">{$kbcat.numarticles}</span>
</a>
<p>{$kbcat.description}</p>
</div>
{/foreach}
</div>
{/if}
{if $kbarticles || !$kbcats}
{if $tag}
<h2>{$LANG.kbviewingarticlestagged} '{$tag}'</h2>
{else}
<h2>{$LANG.knowledgebasearticles}</h2>
{/if}
<div class="kbarticles">
{foreach from=$kbarticles item=kbarticle}
<a href="{routePath('knowledgebase-article-view', {$kbarticle.id}, {$kbarticle.urlfriendlytitle})}">
<span class="glyphicon glyphicon-file"></span> {$kbarticle.title}
</a>
<p>{$kbarticle.article|truncate:100:"..."}</p>
{foreachelse}
{include file="$template/includes/alert.tpl" type="info" msg=$LANG.knowledgebasenoarticles textcenter=true}
{/foreach}
</div>
{/if}