| 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?" />
<span class="input-group-btn">
<input type="submit" id="btnKnowledgebaseSearch" class="btn btn-primary btn-input-padded-responsive" value="{$LANG.search}" />
</span>
</div>
</form>
<h2>{$LANG.knowledgebasecategories}</h2>
{if $kbcats}
<div class="row">
{foreach from=$kbcats name=kbcats item=kbcat}
<div class="col-sm-4">
<a href="{routePath('knowledgebase-category-view', {$kbcat.id}, {$kbcat.urlfriendlyname})}">
<i class="fa fa-folder-open-o"></i>
{$kbcat.name} ({$kbcat.numarticles})
</a>
<p>{$kbcat.description}</p>
</div>
{if $smarty.foreach.kbcats.iteration mod 3 == 0}
</div><div class="row">
{/if}
{/foreach}
</div>
{else}
{include file="$template/includes/alert.tpl" type="info" msg=$LANG.knowledgebasenoarticles textcenter=true}
{/if}
{if $kbmostviews}
<h2>{$LANG.knowledgebasepopular}</h2>
<div class="kbarticles">
{foreach from=$kbmostviews 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>
{/foreach}
</div>
{/if}