2009-07-12 23:31:47 +00:00
|
|
|
<?php
|
|
|
|
global $comicpress;
|
2009-06-13 11:58:02 +00:00
|
|
|
|
2009-07-12 23:31:47 +00:00
|
|
|
get_header();
|
|
|
|
|
|
|
|
if (have_posts()) {
|
|
|
|
the_post();
|
|
|
|
if (in_comic_category()) { ?>
|
|
|
|
<div id="comic-head"></div>
|
|
|
|
<div id="comic"><?php do_action('show_comic'); ?></div>
|
|
|
|
<div id="comic-foot"></div>
|
|
|
|
<?php }
|
|
|
|
}
|
|
|
|
rewind_posts();
|
|
|
|
|
|
|
|
$nav_comics = $comicpress->get_nav_comics();
|
|
|
|
?>
|
2009-06-13 11:58:02 +00:00
|
|
|
|
2009-07-01 00:01:05 +00:00
|
|
|
<div id="content" class="narrowcolumn">
|
2009-07-12 23:39:38 +00:00
|
|
|
<?php
|
|
|
|
if (have_posts()) {
|
|
|
|
while (have_posts()) { the_post();
|
|
|
|
if (in_comic_category()) {
|
|
|
|
include(dirname(__FILE__) . '/partials/single-comic-post.inc');
|
|
|
|
} else {
|
|
|
|
include(dirname(__FILE_) . '/partials/single-blog-post.inc');
|
|
|
|
}
|
2009-07-12 23:31:47 +00:00
|
|
|
|
2009-07-12 23:39:38 +00:00
|
|
|
comments_template();
|
|
|
|
}
|
2009-07-13 23:06:32 +00:00
|
|
|
} else {
|
|
|
|
include(dirname(__FILE_) . '/partials/single-no-matches.inc');
|
|
|
|
}
|
2009-07-12 23:39:38 +00:00
|
|
|
?>
|
2009-06-13 11:58:02 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php include(TEMPLATEPATH . '/sidebar.php') ?>
|
|
|
|
|
|
|
|
<?php get_footer() ?>
|