(root)/category.php @ 7 - Rev 27
Rev 3 |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
<?php
/*
* The template for displaying Category Archive pages.
*/
get_header
(); ?>
<div id="content">
<?php if (have_posts
()) : ?>
<header id="search-header">
<h1 id="search-title">
<?php printf(__
('Category Archives: %s', 'zendark'), single_cat_title
('', false)); ?></h1>
<?php
$category_description = category_description
();
if (!empty($category_description))
echo apply_filters
('category_archive_meta', '<div class="category-archive-meta">'.$category_description.'</div>');
?>
</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
(); ?>