blob: adbe5771dc758f0f269fdc335472dc61bccafc9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<div class="header">
{if $is_categorized eq 'y' and $gBitSystem->isFeatureActive('package_categories') and $gBitSystem->isFeatureActive('feature_categorypath')}
<div class="category">
<div class="path">{$display_catpath}</div>
</div> {* end category *}
{/if}
<h1>{$pageInfo.content_id} -
{if isset($pageInfo.organisation) && ($pageInfo.organisation <> '') }
{$pageInfo.organisation}
{elseif isset($pageInfo.surname) && ($pageInfo.surname <> '') }
{$pageInfo.prefix}
{$pageInfo.forename}
{$pageInfo.surname}
{else}
{$pageInfo.title}
{/if}</h1>
<div class="description">{$pageInfo.description}</div>
</div> {* end .header *}
|