summaryrefslogtreecommitdiff
path: root/templates/center_wiki_page.tpl
diff options
context:
space:
mode:
authorwjames5 <will@tekimaki.com>2008-04-01 15:54:56 +0000
committerwjames5 <will@tekimaki.com>2008-04-01 15:54:56 +0000
commit61a9d22b65604a1ad1dfcd400f056a38717b1d90 (patch)
treeb58029961ccb0f236455e40d6aed10daa9b028d8 /templates/center_wiki_page.tpl
parent6dc74e804c0a259f4c51f717c675d35621e82fa5 (diff)
downloadwiki-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.tpl14
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}