Current File : /home/mdkeenpw/www/wp-content/themes/logistik/template-builder.php |
<?php
// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
exit( );
}
/**
* @Packge : Logistik
* @version : 1.0
* @Author : Themeholy
* @Author URI: https://themeholy.com/
* Template Name: Template Builder
*/
//Header
get_header();
// Container or wrapper div
$logistik_layout = logistik_meta( 'custom_page_layout' );
if( $logistik_layout == '1' ){ ?>
<div class="logistik-main-wrapper">
<div class="container">
<div class="row">
<div class="col-sm-12">
<?php }elseif( $logistik_layout == '2' ){ ?>
<div class="logistik-main-wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<?php }else{ ?>
<div class="logistik-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( $logistik_layout == '1' ){ ?>
</div>
</div>
</div>
</div>
<?php }elseif( $logistik_layout == '2' ){ ?>
</div>
</div>
</div>
</div>
<?php }else{ ?>
</div>
<?php }
//footer
get_footer();