File: /home/mmickelson/tfgarchive/wpblogtest1.old/wp-content/themes/disconnected/date.php
<?php wp_head(); ?>
</head>
<body id="archives">
<div id="rap">
<?php get_header();?>
<div id="main">
<div id="content" class="hfeed">
<?php if ($posts) { ?>
<?php $post = $posts[0]; /* Hack. Set $post so that the_date() works. */ ?>
<?php if (is_day()) { ?>
<h3><?php the_time('l, F jS, Y'); ?></h3>
<div class="post-info">Daily Archive</div>
<?php } elseif (is_month()) { ?>
<h3><?php the_time('F Y'); ?></h3>
<div class="post-info">Monthly Archive</div>
<?php } elseif (is_year()) { ?>
<h3><?php the_time('Y'); ?></h3>
<div class="post-info">Yearly Archive</div>
<?php } ?>
<br/>
<?php foreach ($posts as $post) : start_wp(); ?>
<div class="post hentry">
<?php require('post.php'); ?>
</div>
<?php endforeach; ?>
<p align="center"><?php posts_nav_link() ?></p>
<?php } else { ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php } ?>
</div>
<div id="sidebar">
<?php /* If this is a daily archive */ if (isset($_GET['day']) && !empty($_GET['day'])) { ?>
<h2>Currently Browsing</h2><ul><li><p>You are currently browsing the <a href="<?php bloginfo('url'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives
for the day <?php the_time('l, F jS, Y'); ?>.</p></li></ul>
<?php /* If this is a monthly archive */ } elseif ((isset($_GET['m']) && !empty($_GET['m'])) or (isset($_GET['monthnum']) && ! empty($_GET['monthnum']))) { ?>
<h2>Currently Browsing</h2><ul><li><p>You are currently browsing the <a href="<?php bloginfo('url'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives
for <?php the_time('F, Y'); ?>.</p></li></ul>
<?php /* If this is a yearly archive */ } elseif (isset($_GET['year']) && !empty($_GET['year'])) { ?>
<h2>Currently Browsing</h2><ul><li><p>You are currently browsing the <a href="<?php bloginfo('url'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives
for the year <?php the_time('Y'); ?>.</p></li></ul>
<?php } ?>
<h2><?php _e('Elsewhere'); ?></h2>
<?php get_sidebar(); ?>
</div>
<?php get_footer();?>
</div>
</div>
</body>
</html>