mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
dd202ce1f9
git-svn-id: http://svn.automattic.com/wordpress/trunk@3517 1a063a9b-81f0-0310-95a4-ce76da25c4cd
26 lines
354 B
PHP
26 lines
354 B
PHP
<?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(); ?>
|