/**
* The template for displaying 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.
*
* If you'd like to further customize these archive views, you may create a
* new template file for each specific one. For example, Themonic Blog already
* has tag.php for Tag archives, category.php for Category archives, and
* author.php for Author archives.
*
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package WordPress - Themonic Framework
* @subpackage Iconic_One
* @since Iconic One 1.0
*/
get_header(); ?>
if ( is_day() ) :
printf( __( 'Daily Archives: %s', 'themonic' ), '' . get_the_date() . '' );
elseif ( is_month() ) :
printf( __( 'Monthly Archives: %s', 'themonic' ), '' . get_the_date( _x( 'F Y', 'monthly archives date format', 'themonic' ) ) . '' );
elseif ( is_year() ) :
printf( __( 'Yearly Archives: %s', 'themonic' ), '' . get_the_date( _x( 'Y', 'yearly archives date format', 'themonic' ) ) . '' );
else :
_e( 'Archives', 'themonic' );
endif;
?>