forked from Abulhallaj/whmcs-template-six-rtl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
knowledgebase.tpl
43 lines (37 loc) · 1.77 KB
/
knowledgebase.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<form role="form" method="post" action="{$WEB_ROOT}/knowledgebase.php?action=search">
<div class="input-group">
<input type="text" name="search" class="form-control" placeholder="{$LANG.kbsearchexplain}" />
<span class="input-group-btn">
<input type="submit" class="btn btn-primary btn-input-padded-responsive" value="{$LANG.search}" />
</span>
</div>
</form>
<h2>{$LANG.knowledgebasecategories}</h2>
{if $kbcats}
<div class="row kbcategories">
{foreach from=$kbcats name=kbcats item=kbcat}
<div class="col-sm-4">
<a href="{if $seofriendlyurls}{$WEB_ROOT}/knowledgebase/{$kbcat.id}/{$kbcat.urlfriendlyname}{else}knowledgebase.php?action=displaycat&catid={$kbcat.id}{/if}">
<span class="glyphicon glyphicon-folder-close"></span> {$kbcat.name} <span class="badge badge-info">{$kbcat.numarticles}</span>
</a>
<p>{$kbcat.description}</p>
</div>
{if $smarty.foreach.kbcats.iteration mod 3 == 0}
<div class="clearfix"></div>
{/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="{if $seofriendlyurls}{$WEB_ROOT}/knowledgebase/{$kbarticle.id}/{$kbarticle.urlfriendlytitle}.html{else}knowledgebase.php?action=displayarticle&id={$kbarticle.id}{/if}">
<span class="glyphicon glyphicon-file"></span> {$kbarticle.title}
</a>
<p>{$kbarticle.article|truncate:100:"..."}</p>
{/foreach}
</div>
{/if}