2009-11-13 16:00:25 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
Template Name: Archives
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
<?php get_header(); ?>
|
|
|
|
<?php include(get_template_directory() . '/layout-head.php'); ?>
|
2009-12-20 12:05:59 +00:00
|
|
|
|
2009-12-23 18:43:05 +00:00
|
|
|
<?php
|
|
|
|
if (have_posts()) {
|
|
|
|
while (have_posts()) : the_post();
|
2009-12-24 23:01:47 +00:00
|
|
|
comicpress_display_post();
|
2009-12-23 18:43:05 +00:00
|
|
|
endwhile;
|
|
|
|
}
|
|
|
|
?>
|
2009-12-20 12:05:59 +00:00
|
|
|
|
2009-12-24 23:15:30 +00:00
|
|
|
<div <?php post_class(); ?>>
|
|
|
|
<div class="post-head"></div>
|
2009-12-20 12:05:59 +00:00
|
|
|
<div class="post-page">
|
|
|
|
<div id="archivepage">
|
|
|
|
<h2><?php _e('Archives by Month:','comicpress'); ?></h2>
|
|
|
|
<ul><?php wp_get_archives('type=monthly') ?></ul>
|
|
|
|
</div>
|
|
|
|
<br class="clear-margins" />
|
|
|
|
</div>
|
2009-12-24 23:15:30 +00:00
|
|
|
<div class="post-foot"></div>
|
2009-12-20 12:05:59 +00:00
|
|
|
</div>
|
|
|
|
|
2009-12-24 23:15:30 +00:00
|
|
|
<div <?php post_class(); ?>>
|
|
|
|
<div class="post-head"></div>
|
2009-12-20 12:05:59 +00:00
|
|
|
<div class="post-page">
|
|
|
|
<div id="archivepage">
|
|
|
|
<h2><?php _e('Archives by Subject:','comicpress'); ?></h2>
|
|
|
|
<ul><?php wp_list_categories() ?></ul>
|
2009-11-13 16:00:25 +00:00
|
|
|
</div>
|
2009-12-20 12:05:59 +00:00
|
|
|
<br class="clear-margins" />
|
|
|
|
</div>
|
2009-12-24 23:15:30 +00:00
|
|
|
<div class="post-foot"></div>
|
2009-12-20 12:05:59 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php if ('open' == $post->comment_status) { comments_template('', true); } ?>
|
2009-11-13 16:00:25 +00:00
|
|
|
|
|
|
|
<?php include(get_template_directory() . '/layout-foot.php'); ?>
|
|
|
|
<?php get_footer() ?>
|