2009-08-21 19:29:45 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
Template Name: Archives
|
|
|
|
*/
|
|
|
|
?>
|
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-09-15 10:23:54 +00:00
|
|
|
|
2009-09-19 10:11:37 +00:00
|
|
|
<div class="<?php comicpress_post_class(); ?>">
|
2009-09-03 01:12:30 +00:00
|
|
|
<div class="post-page-head"></div>
|
|
|
|
<div class="post-page">
|
2009-09-12 15:37:07 +00:00
|
|
|
<div id="archivepage">
|
2009-10-02 01:30:23 +00:00
|
|
|
<h2><?php _e('Archives by Month:','comicpress'); ?></h2>
|
2009-09-12 15:37:07 +00:00
|
|
|
<ul><?php wp_get_archives('type=monthly') ?></ul>
|
2009-10-02 01:30:23 +00:00
|
|
|
<h2><?php _e('Archives by Subject:','comicpress'); ?></h2>
|
2009-09-12 15:37:07 +00:00
|
|
|
<ul><?php wp_list_categories() ?></ul>
|
|
|
|
<br class="clear-margins" />
|
|
|
|
</div>
|
2009-09-03 01:12:30 +00:00
|
|
|
</div>
|
|
|
|
<div class="post-page-foot"></div>
|
|
|
|
</div>
|
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() ?>
|