0byt3m1n1
Path:
/
data
/
27
/
5
/
48
/
71
/
5374886
/
user
/
6435255
/
htdocs
/
wp-content
/
themes
/
business-way
/
[
Home
]
File: page.php
<?php /** * The template for displaying all pages * * This is the template that displays all pages by default. * Please note that this is the WordPress construct of pages * and that other 'pages' on your WordPress site may use a * different template. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package Canyon Themes * @subpackage Business Way */ get_header(); /* * Get header image */ business_way_header_image_single_page(); ?> <section> <div class="container"> <div class="row"> <div class="col-sm-<?php business_way_sidebar_condition_single_page();?> left-block"> <?php while (have_posts()) : the_post(); get_template_part('template-parts/content', 'page'); // If comments are open or we have at least one comment, load up the comment template. if (comments_open() || get_comments_number()) : comments_template(); endif; endwhile; // End of the loop. ?> </div><!-- div --> <?php business_way_page_sidebar_conditions_below(); ?> </div><!-- div --> </div> </section> <?php get_footer();