2009-07-23 23:58:25 +00:00
|
|
|
<?php
|
|
|
|
global $comicpres, $post, $posts;
|
2009-06-13 11:58:02 +00:00
|
|
|
|
2009-07-23 23:58:25 +00:00
|
|
|
comicpress_init();
|
|
|
|
|
|
|
|
ob_start();
|
|
|
|
|
|
|
|
if (have_posts()) {
|
2009-07-16 01:34:34 +00:00
|
|
|
include_partial('archive-header');
|
2009-07-13 09:18:25 +00:00
|
|
|
|
|
|
|
// why can't wordpress allow for post date asc sorting out of the box...
|
|
|
|
|
2009-07-15 22:36:40 +00:00
|
|
|
query_posts($query_string . '&order=asc');
|
2009-07-16 01:55:28 +00:00
|
|
|
while (have_posts()) {
|
2009-07-13 09:18:25 +00:00
|
|
|
the_post();
|
|
|
|
|
|
|
|
if (in_comic_category()) {
|
2009-07-16 01:34:34 +00:00
|
|
|
include_partial('archive-comic-post');
|
2009-07-13 09:18:25 +00:00
|
|
|
} else {
|
2009-07-16 01:34:34 +00:00
|
|
|
include_partial('archive-blog-post');
|
2009-07-13 09:18:25 +00:00
|
|
|
}
|
2009-07-13 23:06:32 +00:00
|
|
|
}
|
2009-06-13 11:58:02 +00:00
|
|
|
|
2009-07-16 01:34:34 +00:00
|
|
|
include_partial('archive-page-nav');
|
2009-07-15 21:11:35 +00:00
|
|
|
} else {
|
2009-07-16 01:34:34 +00:00
|
|
|
include_partial('archive-not-found');
|
2009-07-23 23:58:25 +00:00
|
|
|
}
|
2009-06-13 11:58:02 +00:00
|
|
|
|
2009-07-23 23:58:25 +00:00
|
|
|
$content = ob_get_clean();
|
|
|
|
|
|
|
|
include(get_template_directory() . '/layouts/' . $comicpress->comicpress_options['layout']);
|
|
|
|
?>
|