2010-03-29 18:03:15 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Generic template for Archive pages.
|
|
|
|
*
|
|
|
|
* Used to display archive-type pages if nothing more specific matches a query.
|
|
|
|
* For example, puts together date-based pages if no date.php file exists.
|
|
|
|
*
|
|
|
|
* Learn more: http://codex.wordpress.org/Template_Hierarchy
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty Ten
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
2010-02-07 11:16:26 -05:00
|
|
|
<?php get_header(); ?>
|
2010-02-08 13:02:23 -05:00
|
|
|
|
|
|
|
<div id="container">
|
2010-02-07 11:16:26 -05:00
|
|
|
<div id="content">
|
2010-02-08 13:02:23 -05:00
|
|
|
|
|
|
|
<?php the_post(); ?>
|
|
|
|
|
2010-05-10 16:30:58 -04:00
|
|
|
<h1 class="page-title">
|
2010-02-07 11:16:26 -05:00
|
|
|
<?php if ( is_day() ) : ?>
|
2010-05-10 16:30:58 -04:00
|
|
|
<?php printf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_date() ); ?>
|
2010-02-07 11:16:26 -05:00
|
|
|
<?php elseif ( is_month() ) : ?>
|
2010-05-10 16:30:58 -04:00
|
|
|
<?php printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date('F Y') ); ?>
|
2010-02-07 11:16:26 -05:00
|
|
|
<?php elseif ( is_year() ) : ?>
|
2010-05-10 16:30:58 -04:00
|
|
|
<?php printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date('Y') ); ?>
|
2010-02-14 02:13:34 -05:00
|
|
|
<?php else : ?>
|
2010-05-10 16:30:58 -04:00
|
|
|
<?php _e( 'Blog Archives', 'twentyten' ); ?>
|
2010-02-07 11:16:26 -05:00
|
|
|
<?php endif; ?>
|
2010-05-10 16:30:58 -04:00
|
|
|
</h1>
|
2010-02-07 11:16:26 -05:00
|
|
|
<?php rewind_posts(); ?>
|
2010-03-25 18:04:27 -04:00
|
|
|
<?php
|
|
|
|
/* Run the loop for the archives page to output the posts.
|
|
|
|
* If you want to overload this in a child theme then include a file
|
|
|
|
* called loop-archives.php and that will be used instead.
|
|
|
|
*/
|
|
|
|
get_template_part( 'loop', 'archive' );
|
|
|
|
?>
|
2010-02-08 13:02:23 -05:00
|
|
|
|
|
|
|
</div><!-- #content -->
|
2010-02-07 11:16:26 -05:00
|
|
|
</div><!-- #container -->
|
2010-02-08 13:02:23 -05:00
|
|
|
|
|
|
|
<?php get_sidebar(); ?>
|
2010-03-16 16:17:22 -04:00
|
|
|
<?php get_footer(); ?>
|