summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'themes/twentyfourteen/search.php')
-rw-r--r--themes/twentyfourteen/search.php17
1 files changed, 9 insertions, 8 deletions
diff --git a/themes/twentyfourteen/search.php b/themes/twentyfourteen/search.php
index d90d88a1..6b20315a 100644
--- a/themes/twentyfourteen/search.php
+++ b/themes/twentyfourteen/search.php
@@ -20,14 +20,15 @@ get_header(); ?>
<?php
// Start the Loop.
- while ( have_posts() ) : the_post();
+ while ( have_posts() ) :
+ the_post();
- /*
- * Include the post format-specific template for the content. If you want to
- * use this in a child theme, then include a file called content-___.php
- * (where ___ is the post format) and that will be used instead.
- */
- get_template_part( 'content', get_post_format() );
+ /*
+ * Include the post format-specific template for the content. If you want to
+ * use this in a child theme, then include a file called content-___.php
+ * (where ___ is the post format) and that will be used instead.
+ */
+ get_template_part( 'content', get_post_format() );
endwhile;
// Previous/next post navigation.
@@ -38,7 +39,7 @@ get_header(); ?>
get_template_part( 'content', 'none' );
endif;
- ?>
+ ?>
</div><!-- #content -->
</section><!-- #primary -->