summaryrefslogtreecommitdiff
path: root/templates/page_header.tpl
blob: d358562ed24c1dbef8397b73552f1c8d94b4a018 (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' ) and $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}