source: trunk/www.guidonia.net/wp/wp-content/themes/default/archives.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 440 bytes
Line 
1<?php
2/**
3 * @package WordPress
4 * @subpackage Default_Theme
5 */
6/*
7Template Name: Archives
8*/
9?>
10
11<?php get_header(); ?>
12
13<div id="content" class="widecolumn">
14
15<?php get_search_form(); ?>
16
17<h2><?php _e('Archives by Month:', 'kubrick'); ?></h2>
18 <ul>
19 <?php wp_get_archives('type=monthly'); ?>
20 </ul>
21
22<h2><?php _e('Archives by Subject:', 'kubrick'); ?></h2>
23 <ul>
24 <?php wp_list_categories(); ?>
25 </ul>
26
27</div>
28
29<?php get_footer(); ?>
Note: See TracBrowser for help on using the repository browser.