mirror of
https://github.com/Frumph/comicpress.git
synced 2026-01-31 02:05:17 +01:00
19 lines
531 B
PHP
19 lines
531 B
PHP
|
|
<?php if (!comicpress_sidebars_disabled()) comicpress_get_sidebar('under-blog'); ?>
|
|
</div>
|
|
<?php
|
|
if (!comicpress_is_signup() && !comicpress_sidebars_disabled()) {
|
|
if (comicpress_is_layout('3clgn')) comicpress_get_sidebar('right');
|
|
}
|
|
?>
|
|
</div>
|
|
<?php
|
|
if (!comicpress_is_signup() && !comicpress_sidebars_disabled()) {
|
|
if (comicpress_is_layout('3cl,3cr')) comicpress_get_sidebar('left');
|
|
if (comicpress_is_layout('2cr,2crw,3c,3cr,3crgn')) comicpress_get_sidebar('right');
|
|
}
|
|
?>
|
|
<div class="clear"></div>
|
|
</div>
|
|
</div>
|