2009-08-21 19:29:45 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
Template Name: Blog
|
|
|
|
*/
|
|
|
|
?>
|
2009-09-03 01:12:30 +00:00
|
|
|
<?php get_header(); ?>
|
2009-09-17 22:45:30 +00:00
|
|
|
<?php include(get_template_directory() . '/layout-head.php'); ?>
|
2009-08-21 19:29:45 +00:00
|
|
|
|
2009-10-11 11:48:57 +00:00
|
|
|
<?php global $blog_postcount;
|
2009-11-22 18:06:19 +00:00
|
|
|
if (!$comicpress['split_column_in_two']) {
|
2009-10-11 11:48:57 +00:00
|
|
|
$blog_query = 'showposts='.$blog_postcount.'&cat="-'.exclude_comic_categories().'"&paged='.$paged;
|
2009-08-21 19:29:45 +00:00
|
|
|
|
2009-10-11 11:48:57 +00:00
|
|
|
$posts = query_posts($blog_query);
|
|
|
|
if (have_posts()) {
|
2009-08-28 09:24:22 +00:00
|
|
|
|
2009-10-11 11:48:57 +00:00
|
|
|
while (have_posts()) : the_post();
|
|
|
|
|
|
|
|
display_blog_post();
|
2009-08-21 19:29:45 +00:00
|
|
|
|
2009-10-11 11:48:57 +00:00
|
|
|
endwhile;
|
|
|
|
|
|
|
|
}
|
|
|
|
comicpress_pagination();
|
2009-11-20 05:02:23 +00:00
|
|
|
} else {
|
2009-11-20 06:03:02 +00:00
|
|
|
comicpress_dual_columns();
|
2009-11-20 05:02:23 +00:00
|
|
|
} ?>
|
2009-10-30 20:32:01 +00:00
|
|
|
<?php get_sidebar('underblog'); ?>
|
2009-08-21 19:29:45 +00:00
|
|
|
|
2009-09-17 22:45:30 +00:00
|
|
|
<?php include(get_template_directory() . '/layout-foot.php'); ?>
|
2009-08-21 17:45:23 +00:00
|
|
|
<?php get_footer() ?>
|