comicpress-core/layouts/classic.inc

23 lines
284 B
PHP
Raw Normal View History

2009-07-20 22:27:05 +00:00
<?php
/*
Layout Name: Classic
*/
2009-07-23 19:12:13 +00:00
if (function_exists('register_sidebar')) {
register_sidebar('right');
}
2009-07-20 22:27:05 +00:00
?>
<?php get_header() ?>
<?php echo $comic ?>
<div id="content" class="narrowcolumn">
<?php echo $content ?>
</div>
2009-07-23 19:12:13 +00:00
<?php get_sidebar('right') ?>
2009-07-20 22:27:05 +00:00
<?php get_footer() ?>