root/headlines-new-theme/archives.php

Revision 31, 299 bytes (checked in by drakewils..@gmail.com, 5 months ago)

headlines theme. for realz this time

Line 
1 <?php
2 /*
3 Template Name: Archives
4 */
5 ?>
6
7 <?php get_header(); ?>
8
9 <?php include (TEMPLATEPATH . '/searchform.php'); ?>
10
11 <h2>Archives by Month:</h2>
12 <ul>
13     <?php wp_get_archives('type=monthly'); ?>
14 </ul>
15
16 <h2>Archives by Subject:</h2>
17 <ul>
18      <?php wp_list_categories(); ?>
19 </ul>
20
21 <?php get_footer(); ?>
22
Note: See TracBrowser for help on using the browser.