summaryrefslogtreecommitdiff
path: root/templates/page_header.tpl
blob: 5e37b2a44505878ef57852dfd177e6863b3052ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{capture assign="wiki_page_title"}{strip}
	{if $gBitSystem->isFeatureActive( 'wiki_page_title' )}
		<h1>{$gContent->mInfo.title|escape}</h1>
	{/if}
	{if $gBitSystem->isFeatureActive( 'wiki_description' ) && $gContent->mInfo.summary}
		<p>{$gContent->mInfo.summary|escape}</p>
	{/if}
{/strip}{/capture}
{if !empty($wiki_page_title)}
	<div class="main_header">
		{$wiki_page_title|highlight}
		{include file="bitpackage:wiki/page_date_bar.tpl"}
		{if ( !empty( $highlightWordList) ) }{$highlightWordList}{/if}
	</div><!-- end .header -->
{/if}