-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuilder.php
More file actions
executable file
·34 lines (24 loc) · 789 Bytes
/
builder.php
File metadata and controls
executable file
·34 lines (24 loc) · 789 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
<?php
/**
* Template Name: Builder Page
* Description: Use with Beaver Builder.
* @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="builder-content">
<?php get_template_part( 'loop', 'builder' ); //the Loop ?>
</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();
?>