]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-content/themes/default/archives.php
WordPress 4.1.1-scripts
[autoinstalls/wordpress.git] / wp-content / themes / default / archives.php
1 <?php
2 /**
3  * @package WordPress
4  * @subpackage Default_Theme
5  */
6 /*
7 Template 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>Archives by Month:</h2>
18         <ul>
19                 <?php wp_get_archives('type=monthly'); ?>
20         </ul>
21
22 <h2>Archives by Subject:</h2>
23         <ul>
24                  <?php wp_list_categories(); ?>
25         </ul>
26
27 </div>
28
29 <?php get_footer(); ?>