2009-11-13 16:00:25 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
Template Name: Archives
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
<?php get_header(); ?>
|
|
|
|
<?php include(get_template_directory() . '/layout-head.php'); ?>
|
|
|
|
|
|
|
|
<div class="<?php comicpress_post_class(); ?>">
|
|
|
|
<div class="post-page-head"></div>
|
|
|
|
<div class="post-page">
|
|
|
|
<div id="archivepage">
|
2009-11-17 08:33:18 +00:00
|
|
|
<h2 class="pagetitle"><?php the_title() ?></h2>
|
2009-11-13 16:00:25 +00:00
|
|
|
<ul><?php wp_get_archives('type=monthly') ?></ul>
|
|
|
|
<h2><?php _e('Archives by Subject:','comicpress'); ?></h2>
|
|
|
|
<ul><?php wp_list_categories() ?></ul>
|
|
|
|
</div>
|
2009-11-17 06:37:46 +00:00
|
|
|
<div class="clear"></div>
|
2009-11-13 16:00:25 +00:00
|
|
|
</div>
|
|
|
|
<div class="post-page-foot"></div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php include(get_template_directory() . '/layout-foot.php'); ?>
|
|
|
|
<?php get_footer() ?>
|