diff options
author | 2018-03-10 19:10:16 -0500 | |
---|---|---|
committer | 2018-03-10 19:10:23 -0500 | |
commit | f0ba08ced62b6fb3d1d5c7f1c1dd18b9b880a515 (patch) | |
tree | 4d1b83b544d48f04f78a6a1f52c903c32e2bd9dc /themes/mantra/search.php | |
parent | Update akismet 4.0.2 (diff) | |
download | blogs-gentoo-f0ba08ced62b6fb3d1d5c7f1c1dd18b9b880a515.tar.gz blogs-gentoo-f0ba08ced62b6fb3d1d5c7f1c1dd18b9b880a515.tar.bz2 blogs-gentoo-f0ba08ced62b6fb3d1d5c7f1c1dd18b9b880a515.zip |
Update mantra 3.0.4
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'themes/mantra/search.php')
-rw-r--r-- | themes/mantra/search.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/themes/mantra/search.php b/themes/mantra/search.php index c5ec2e42..a94c68e0 100644 --- a/themes/mantra/search.php +++ b/themes/mantra/search.php @@ -12,10 +12,10 @@ get_header(); ?> <section id="container"> <div id="content" role="main"> <?php cryout_before_content_hook(); ?> - + <?php if ( have_posts() ) : ?> - + <?php mantra_content_nav( 'nav-above' ); ?> <span class="page-title"><?php printf( __( 'Search Results for: %s', 'mantra' ), '<span>' . get_search_query() . '</span>' ); ?></span> <div class="contentsearch"><?php get_search_form(); ?></div> @@ -27,7 +27,7 @@ get_header(); ?> * If you want to overload this in a child theme then include a file * called loop-search.php and that will be used instead. */ - get_template_part( 'content', get_post_format() ); + get_template_part( 'content/content', get_post_format() ); ?> <?php endwhile; ?> @@ -50,4 +50,5 @@ get_header(); ?> <?php get_sidebar(); ?> </section><!-- #primary --> -<?php get_footer(); ?> +<?php +get_footer(); |