1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/3.0/modules/pages/views/pages_display.html.php

27 lines
596 B
PHP
Raw Normal View History

2011-06-12 06:17:46 +00:00
<?php defined("SYSPATH") or die("No direct script access.") ?>
<? if (module::get_var("pages", "show_sidebar")) : ?>
<style type="text/css">
2011-06-22 14:54:58 +00:00
<? if (module::get_var("gallery", "active_site_theme") == "greydragon") : ?>
#g-column-right {
display: none;
}
.g-page-block-content {
width: 99%;
}
<? else: ?>
#g-sidebar {
display: none;
}
#g-content {
width: 950px;
}
<? endif ?>
</style>
<? endif ?>
2011-06-12 06:17:46 +00:00
<div class="g-page-block">
2011-07-21 17:40:17 +00:00
<h1> <?= t($title) ?> </h1>
2011-06-12 06:17:46 +00:00
<div class="g-page-block-content">
2011-07-21 17:40:17 +00:00
<?=t($body) ?>
2011-06-12 06:17:46 +00:00
</div>
</div>