136
|
1 |
<?php |
|
2 |
/* |
|
3 |
Template Name: Archives |
|
4 |
*/ |
|
5 |
?> |
|
6 |
<?php get_header(); ?> |
|
7 |
<div class="column span-17 colborder first" id="maincontent"> |
|
8 |
<div class="content"> |
|
9 |
<h2>Archives by Month:</h2> |
|
10 |
<ul> |
|
11 |
<?php wp_get_archives('type=monthly'); ?> |
|
12 |
</ul> |
|
13 |
<h2 class="pagetitle">Archive for the "" Category</h2> |
|
14 |
<ul> |
|
15 |
<?php wp_list_categories(); ?> |
|
16 |
</ul> |
|
17 |
</div> |
|
18 |
</div> |
|
19 |
<div class="column span-5 last"> |
|
20 |
<?php include (TEMPLATEPATH . '/sidebar_single.php'); ?> |
|
21 |
</div> |
|
22 |
<hr></hr> |
|
23 |
<?php get_sidebar(); ?> |
|
24 |
<?php get_footer(); ?> |