36 lines
1.0 KiB
PHP
36 lines
1.0 KiB
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 will use a different template.
|
|
*/
|
|
|
|
get_header();
|
|
$column_classes = solarify_get_columns_classes(); ?>
|
|
<div id="content" class="<?php echo esc_attr( $column_classes['main_column_class'] ); ?>">
|
|
<?php
|
|
// Start the Loop.
|
|
while ( have_posts() ) : the_post();
|
|
|
|
// Include the page content template.
|
|
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();
|
|
}
|
|
endwhile;
|
|
?>
|
|
</div><!--eof #content -->
|
|
|
|
<?php if ( $column_classes['sidebar_class'] ): ?>
|
|
<!-- main aside sidebar -->
|
|
<aside class="<?php echo esc_attr( $column_classes['sidebar_class'] ); ?>">
|
|
<?php get_sidebar(); ?>
|
|
</aside>
|
|
<!-- eof main aside sidebar -->
|
|
<?php
|
|
endif;
|
|
get_footer();
|