-
Notifications
You must be signed in to change notification settings - Fork 0
/
search-page.php
47 lines (44 loc) · 1.22 KB
/
search-page.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?
defined('ABSPATH') OR exit;
/**
* Template Name: Search Page
* Description: Search Page.
*
* @package WordPress
* @subpackage WP-Skeleton
*/
get_header();
get_template_part( 'sub-header', 'index' ); //the header stuffs
get_template_part( 'menu', 'index' ); //the menu + logo/site title
?>
<main id="main-content">
<div class="super-container title-holder">
<div class="container">
<div class="sixteen columns alpha omega primary-nav-holder">
<h1><? the_title(); ?></h1>
</div><!-- menu-holder -->
</div>
</div>
<div class="super-container interior-page">
<div class="container">
<div class="sixteen columns alpha">
<div id="primary" class="full-width">
<div id="content">
<div class="two-thirds column alpha">
<div class="main">
<? the_post(); ?>
<article id="post-<? the_ID(); ?>" <? post_class(); ?> role="article">
<div class="entry-content">
<?php get_search_form(); ?>
</div><!-- .entry-content -->
</article><!-- #post-<? the_ID(); ?> -->
</div><!-- #main -->
</div><!-- two-thirds -->
<? get_sidebar(); ?>
</div><!-- #content -->
</div><!-- #primary -->
</div>
</div>
</div>
</main>
<? get_footer(); ?>