Created
December 6, 2019 18:17
-
-
Save itsdavidmorgan/899ea714dd14f1440b6ea90e3fe9aa48 to your computer and use it in GitHub Desktop.
Organic Themes Page Template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This template displays the default page content. | |
* | |
* @package Organic Origin | |
* @since Organic Origin 1.0 | |
*/ | |
get_header(); ?> | |
<!-- BEGIN .post class --> | |
<div <?php post_class(); ?> id="page-<?php the_ID(); ?>"> | |
<?php get_template_part( 'content/banner', 'image' ); ?> | |
<!-- BEGIN .row --> | |
<div class="row"> | |
<!-- BEGIN .content --> | |
<div class="content"> | |
<?php if ( is_active_sidebar( 'sidebar-1' ) ) { ?> | |
<!-- BEGIN .eleven columns --> | |
<section class="eleven columns"> | |
<?php get_template_part( 'content/loop', 'page' ); ?> | |
<!-- END .eleven columns --> | |
</section> | |
<!-- BEGIN .five columns --> | |
<section class="five columns"> | |
<?php get_sidebar(); ?> | |
<!-- END .five columns --> | |
</section> | |
<?php } else { ?> | |
<!-- BEGIN .sixteen columns --> | |
<section class="sixteen columns"> | |
<?php get_template_part( 'content/loop', 'page' ); ?> | |
<!-- END .sixteen columns --> | |
</section> | |
<?php } ?> | |
<!-- END .content --> | |
</div> | |
<!-- END .row --> | |
</div> | |
<!-- END .post class --> | |
</div> | |
<?php get_footer(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment