<?php /* Template Name: Archives */ ?> <?php get_header(); ?> <!-- BEGIN ARCHIVES.PHP --> <div id="content"> <h2 class="page-title"><?php _e( 'Archives by Subject:', 'vermilionchristmas' ); ?></h2> <ul> <?php wp_list_categories( array( 'show_count' => true, ) ); ?> </ul> <h2><?php _e( 'Archives by Month:', 'vermilionchristmas' ); ?></h2> <ul> <?php wp_get_archives( 'type=monthly' ); ?> </ul> <?php edit_post_link( __( 'edit', 'vermilionchristmas' ), '<div class="edit">[',']</div>' ); ?> </div> <!-- END ARCHIVES.PHP --> <?php get_sidebar(); ?> <?php get_footer(); ?>