(root)/archive.php @ 35 - Rev 27
Rev 3 |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
<?php
/*
* 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.
*
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*/
get_header
(); ?>
<div id="content">
<?php if (have_posts
()) : ?>
<header id="search-header">
<h1 id="search-title">
<?php if (is_day
()) : ?>
<?php printf(__
('Daily Archives: %s', 'zendark'), get_the_date
()); ?>
<?php elseif (is_month
()) : ?>
<?php printf(__
('Monthly Archives: %s', 'zendark'), get_the_date
('F Y')); ?>
<?php elseif ( is_year
() ) : ?>
<?php printf(__
('Yearly Archives: %s', 'zendark'), get_the_date
('Y')); ?>
<?php else : ?>
<?php _e
('Blog Archives', 'zendark'); ?>
<?php endif; ?>
</h1>
</header>
<?php zendark_content_nav
('nav-above'); ?>
<?php /* Start the Loop */ ?>
<?php while (have_posts
()) : the_post
(); ?>
<?php
/* Include the Post-Format-specific template for the content.
* If you want to overload this in a child theme then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part
('content', false);
?>
<?php endwhile; ?>
<?php zendark_content_nav
('nav-below'); ?>
<?php else : ?>
<div>
<header id="search-header">
<h1 id="search-title">
<?php _e
( 'Nothing Found', 'zendark' ); ?></h1>
</header><!-- .entry-header -->
<div id="search-content">
<p>
<?php _e
( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'zendark' ); ?></p>
<?php get_search_form
(); ?>
</div><!-- #search-content -->
</div>
<?php endif; ?>
</div><!-- #content -->
<?php get_sidebar
(); ?>
<?php get_footer
(); ?>