windhamdavid 11 years ago
parent
commit
e2f2f06682
4 changed files with 80 additions and 1 deletions
  1. 40 0
      404.php
  2. 0 0
      content.php
  3. 0 1
      footer.php
  4. 40 0
      search.php

+ 40 - 0
404.php

@@ -0,0 +1,40 @@
+<?php get_header(); ?>
+	<div id="container" class="one-column">
+		<div id="content" role="main">
+			<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+				<div class="entry-content">
+					<div class="date">
+						<?php the_date(); ?>
+					</div>
+					<?php if ( have_posts() ) : ?>
+
+					<header class="page-header">
+						<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentyfourteen' ), get_search_query() ); ?></h1>
+					</header><!-- .page-header -->
+
+						<?php
+							// Start the Loop.
+							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 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.
+							twentyfourteen_paging_nav();
+
+						else :
+							// If no content, include the "No posts found" template.
+							get_template_part( 'content', 'none' );
+
+						endif;
+					?>
+				</div>
+			</div>
+		</div>
+	</div>
+<?php get_footer(); ?>

+ 0 - 0
content.php


+ 0 - 1
footer.php

@@ -1,4 +1,3 @@
-
 	</div>
 	<div id="footer" role="contentinfo">
 	</div>

+ 40 - 0
search.php

@@ -0,0 +1,40 @@
+<?php get_header(); ?>
+	<div id="container" class="one-column">
+		<div id="content" role="main">
+			<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+				<div class="entry-content">
+					<div class="date">
+						<?php the_date(); ?>
+					</div>
+					<?php if ( have_posts() ) : ?>
+
+					<header class="page-header">
+						<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentyfourteen' ), get_search_query() ); ?></h1>
+					</header><!-- .page-header -->
+
+						<?php
+							// Start the Loop.
+							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 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.
+							twentyfourteen_paging_nav();
+
+						else :
+							// If no content, include the "No posts found" template.
+							get_template_part( 'content', 'none' );
+
+						endif;
+					?>
+				</div>
+			</div>
+		</div>
+	</div>
+<?php get_footer(); ?>