2023-01-17 15:11:09 -05:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
Template Name: Archives
|
2024-08-13 07:08:43 -04:00
|
|
|
*/
|
2023-01-17 15:11:09 -05:00
|
|
|
?>
|
|
|
|
<?php get_header();?>
|
|
|
|
<div id="container">
|
|
|
|
<div id="content" role="main">
|
|
|
|
<header class="entry-header">
|
|
|
|
<h1 class="entry-title"><?php the_title(); ?></h1>
|
|
|
|
</header>
|
|
|
|
<div><?php get_search_form();?></div>
|
2024-08-16 07:19:41 -04:00
|
|
|
<table class="archives">
|
2023-01-17 15:11:09 -05:00
|
|
|
<tr>
|
|
|
|
<th>By Month</th>
|
|
|
|
<th>By Subject</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td style="vertical-align:top">
|
2024-08-16 07:19:41 -04:00
|
|
|
<?php wp_get_archives( array('type' => 'monthly','format' => '','after' => ' <span>–</span>')); ?>
|
2023-01-17 15:11:09 -05:00
|
|
|
<!--<?php //wp_get_archives('type=monthly'); ?>-->
|
|
|
|
</td>
|
|
|
|
<td style="vertical-align:top">
|
2024-08-16 07:19:41 -04:00
|
|
|
<ul><?php wp_list_categories( array('title_li' => '') ); ?></ul>
|
2023-01-17 15:11:09 -05:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div><!-- #content -->
|
|
|
|
</div><!-- #container -->
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|