Wordpress/wp-content/themes/kubrick/archives.php
Ryan Boren e1c19b45fb Add page template headers.
git-svn-id: https://develop.svn.wordpress.org/trunk@2020 602fd350-edb4-49c9-b593-d223f7449a82
2004-12-30 18:29:35 +00:00

26 lines
354 B
PHP

<?php
/*
Template Name: Archives
*/
?>
<?php get_header(); ?>
<div id="content" class="widecolumn">
<?php include (TEMPLATEPATH . '/searchform.php'; ?>
<h2>Archives by Month:</h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
<h2>Archives by Subject:</h2>
<ul>
<?php wp_list_cats(); ?>
</ul>
</div>
<?php get_footer(); ?>