diff options
Diffstat (limited to 'themes/mantra/author.php')
-rw-r--r-- | themes/mantra/author.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/themes/mantra/author.php b/themes/mantra/author.php index c8423b99..ce424eb1 100644 --- a/themes/mantra/author.php +++ b/themes/mantra/author.php @@ -12,9 +12,9 @@ get_header(); ?> <section id="container"> <div id="content" role="main"> <?php cryout_before_content_hook(); ?> - + <?php if ( have_posts() ) : ?> - + <?php /* Queue the first post, that way we know * what author we're dealing with (if that is the case). @@ -61,7 +61,7 @@ get_header(); ?> * 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', get_post_format() ); + get_template_part( 'content/content', get_post_format() ); ?> <?php endwhile; ?> @@ -82,11 +82,12 @@ get_header(); ?> </article><!-- #post-0 --> <?php endif; ?> - + <?php cryout_after_content_hook(); ?> </div><!-- #content --> <?php get_sidebar(); ?> </section><!-- #primary --> -<?php get_footer(); ?>
\ No newline at end of file +<?php +get_footer(); |