File: /home/urgentelectrical/public_html/wp-content/themes/my-custom-theme/page.php
<?php get_header(); ?>
<?php if(get_field('banner_bg')) { ?>
<div class="inner-banner-section" style="background-image: url(<?php echo get_field('banner_bg'); ?>);">
<?php } else { ?>
<div class="inner-banner-section" style="background-image:url('<?php bloginfo('template_url'); ?>/assets/img/inner-banner.png')">
<?php } ?>
<div class="container">
<div class="row">
<div class="inner_banner_content_wrp">
<div class="banner-text">
<h1><?php the_title(); ?></h1>
<div class="breadcrumb"><a href="<?php echo get_home_url(); ?>">Home</a><span class="dash">-</span><span class="bread_title"><?php the_title(); ?></span></div>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid for-section">
<div class="container">
<div class="text-center">
<?php while(have_posts()) : the_post();?>
<?php the_content(); ?>
<?php endwhile; wp_reset_query(); ?>
</div>
</div>
</div>
<div class="height"></div>
<?php get_footer(); ?>