diff options
| author | wjames5 <will@tekimaki.com> | 2008-04-01 15:54:56 +0000 |
|---|---|---|
| committer | wjames5 <will@tekimaki.com> | 2008-04-01 15:54:56 +0000 |
| commit | 61a9d22b65604a1ad1dfcd400f056a38717b1d90 (patch) | |
| tree | b58029961ccb0f236455e40d6aed10daa9b028d8 /templates/center_wiki_page.tpl | |
| parent | 6dc74e804c0a259f4c51f717c675d35621e82fa5 (diff) | |
| download | wiki-61a9d22b65604a1ad1dfcd400f056a38717b1d90.tar.gz wiki-61a9d22b65604a1ad1dfcd400f056a38717b1d90.tar.bz2 wiki-61a9d22b65604a1ad1dfcd400f056a38717b1d90.zip | |
standardize center a little more without being too disruptive. use common class wiki instead of wikipage and wrap content in a body div per common display structure. complain loudly if this is wildly disruptive to your site.
Diffstat (limited to 'templates/center_wiki_page.tpl')
| -rw-r--r-- | templates/center_wiki_page.tpl | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/templates/center_wiki_page.tpl b/templates/center_wiki_page.tpl index ac07822..a181c9f 100644 --- a/templates/center_wiki_page.tpl +++ b/templates/center_wiki_page.tpl @@ -1,5 +1,5 @@ {strip} -<div class="display wikipage"> +<div class="display wiki"> <div class="floaticon"> <!-- Actions --> {if $gBitUser->hasPermission( 'p_wiki_edit_page' )} <a href="{$smarty.const.WIKI_PKG_URL}edit.php?page_id={$gContent->mInfo.page_id}">{biticon ipackage="icons" iname="accessories-text-editor" iexplain="edit"}</a> @@ -13,11 +13,13 @@ <div class="header"><h1>{$gContent->mInfo.title|escape}</h1></div> {/if} - <div class="content"> - {if $gBitSystem->isFeatureActive( 'liberty_auto_display_attachment_thumbs' )} - {include file="bitpackage:liberty/storage_thumbs.tpl"} - {/if} - {$gContent->mInfo.parsed_data} + <div class="body"> + <div class="content"> + {if $gBitSystem->isFeatureActive( 'liberty_auto_display_attachment_thumbs' )} + {include file="bitpackage:liberty/storage_thumbs.tpl"} + {/if} + {$gContent->mInfo.parsed_data} + </div> </div> </div> {/strip} |
