kneath / hemingway

Hemingway is a template for Wordpress

This URL has Read+Write access

kneath (author)
Mon Jan 26 01:10:50 -0800 2009
commit  5593a7f4b15166cec3873f687576045daddf7a0f
tree    8729e525f6db06fa929a7bb5502a0f2e258d217f
parent  fe7087edc24c3e247b1cc668bdd275af095fc3e9
hemingway / archives.php
100644 26 lines (18 sloc) 0.355 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?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(); ?>