Current File : /home/kelaby89/babyl0n.restaurant/wp-content/themes/restar/template-builder.php
<?php
// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
    exit( );
}
/**
 * @Packge    : Restar
 * @version   : 1.0
 * @Author    : Themeholy
 * @Author URI: https://themeforest.net/user/themeholy
 * Template Name: Template Builder
 */

//Header
get_header();


// Container or wrapper div
$restar_layout = restar_meta( 'custom_page_layout' );

if( $restar_layout == '1' ){ ?>
	<div class="restar-main-wrapper">
		<div class="container">
			<div class="row">
				<div class="col-sm-12">
<?php }elseif( $restar_layout == '2' ){ ?>
    <div class="restar-main-wrapper">
		<div class="container-fluid">
			<div class="row">
				<div class="col-sm-12">
<?php }else{ ?>
	<div class="restar-fluid">
<?php } ?>
	<div class="builder-page-wrapper">
	<?php 
	// Query
	if( have_posts() ){
		while( have_posts() ){
			the_post();
			the_content();
		}
        wp_reset_postdata();
	} ?>

	</div>
<?php if( $restar_layout == '1' ){ ?>
				</div>
			</div>
		</div>
	</div>
<?php }elseif( $restar_layout == '2' ){ ?>
				</div>
			</div>
		</div>
	</div>
<?php }else{ ?>
	</div>
<?php }


get_footer();
Page not found – Hello World !