revyver / angelicsoul

A inverted modification of the mildly popular two-column WordPress theme.

This URL has Read+Write access

angelicsoul / archives.php
100644 24 lines (18 sloc) 0.439 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
<?php
/*
Template Name: Archives
*/
?>
 
<?php get_header(); ?>
 
<div id="content" class="widecolumn">
<h2 class="title"><?php _e('Archives by Month:', 'angelicsoul'); ?></h2>
<ul class="archive">
<?php wp_get_archives('type=monthly'); ?>
</ul>
<h2 class="title"><?php _e('Archives by Subject:', 'angelicsoul'); ?></h2>
<ul class="archive">
<?php wp_list_cats(); ?>
</ul>
</div>
 
<?php get_sidebar(); ?>
 
<?php get_footer(); ?>