-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfull-width.php
More file actions
executable file
·40 lines (31 loc) · 966 Bytes
/
full-width.php
File metadata and controls
executable file
·40 lines (31 loc) · 966 Bytes
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
<?php
/**
* Template Name: Full-width Page (No Sidebar)
* Description: A full-width template with no sidebar
*
* @package WordPress
* @subpackage monochromatic
*/
/* Meta, Title, Responsive, and Document Setup Tags */
get_header();
/* Top Content Area (#header) */
get_template_part( 'top', 'index' );
/* Navigation Area (#navigation) */
get_template_part( 'menu', 'index' ); ?>
<section id="content">
<div class="row">
<main id="primary" class="full-width">
<div id="full_content">
<?php get_template_part( 'loop', 'index' ); //the Loop ?>
</div><!-- #full_content -->
</main><!-- #primary -->
</div>
</section>
<?php
/* Lower Footer Widgets (#footer_widgets) */
get_template_part( 'footer_widgets', 'index' );
/* Lower Content Area (#footer) */
get_template_part( 'bottom', 'index' );
/* Lower Script Calls & Meta */
get_footer();
?>