summaryrefslogtreecommitdiff
path: root/templates/page_header.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/page_header.tpl')
-rwxr-xr-x[-rw-r--r--]templates/page_header.tpl13
1 files changed, 7 insertions, 6 deletions
diff --git a/templates/page_header.tpl b/templates/page_header.tpl
index e5421bc..d358562 100644..100755
--- a/templates/page_header.tpl
+++ b/templates/page_header.tpl
@@ -1,14 +1,15 @@
{capture assign="wiki_page_title"}{strip}
{if $gBitSystem->isFeatureActive( 'wiki_page_title' )}
- <h1>{$pageInfo.title|escape}</h1>
+ <h1>{$gContent->mInfo.title|escape}</h1>
{/if}
- {if $gBitSystem->isFeatureActive( 'wiki_description' ) and $pageInfo.summary}
- <p>{$pageInfo.summary|escape}</p>
+ {if $gBitSystem->isFeatureActive( 'wiki_description' ) and $gContent->mInfo.summary}
+ <p>{$gContent->mInfo.summary|escape}</p>
{/if}
- {include file="bitpackage:wiki/page_date_bar.tpl"}
{/strip}{/capture}
{if !empty($wiki_page_title)}
- <div class="header">
- {$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}