comicpress-core/single.php

39 lines
873 B
PHP

<?php
global $comicpress;
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();
?>
<div id="content" class="narrowcolumn">
<?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');
}
comments_template();
}
} else {
include(dirname(__FILE_) . '/partials/single-no-matches.inc');
}
?>
</div>
<?php include(TEMPLATEPATH . '/sidebar.php') ?>
<?php get_footer() ?>