You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

37 lines
768 B

{if $loggedin == "true"}
{if $smarty.server.REQUEST_URI == "/"}
{foreach from=$content item=c}
<div class="header">
<h2><strong>{$c->title}</strong></h2>
</br>
</div>
{$c->body}
{/foreach}
{else}
{foreach from=$content item=c}
<div class="header">
<h2>Help > <strong>{$c->title}</strong></h2>
<div class="breadcrumb-wrapper">
<ol class="breadcrumb">
/ {$c->title}
</ol>
</div>
</div>
{$c->body}
{/foreach}
{/if}
{else}
{foreach from=$content item=c}
{if $c->role == 0}
<div class="header">
<h2>Help > <strong>{$c->title}</strong></h2>
<div class="breadcrumb-wrapper">
<ol class="breadcrumb">
/ {$c->title}
</ol>
</div>
</div>
{$c->body}
{/if}
{/foreach}
{/if}