ACC SHELL

Path : /srv/www/vhosts/laboserv/wp-content/themes/laboserv/
File Upload :
Current File : //srv/www/vhosts/laboserv/wp-content/themes/laboserv/page.php

<?php
/**
 * Šablona pro stránku.
 *
 *
 * @package WordPress
 * @subpackage Laboserv
 * @since Laboserv 0.1
 */

get_header(); ?>

<div id="main-content">

	
		<?php if ( is_active_sidebar( 'header-2' ) ) : ?>
		<div id="header-2" class="widget-area" role="complementary">
			<?php dynamic_sidebar( 'header-2' ); ?>
		</div>
		<?php endif; ?>
	
	
	<?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
		<div id="left-sidebar" class="widget-area" role="complementary">
		
			<?php dynamic_sidebar( 'sidebar-1' ); ?>
		</div>
	<?php endif; ?>
	
	
	
		
		<div id="text-area" class="site-content">
		<div class="breadcrumbs">
		<?php if(function_exists('bcn_display'))
		{ bcn_display(); }
		?>
		</div>
		
		<div id="content" role="main">

			<?php while ( have_posts() ) : the_post(); ?>
				<?php get_template_part( 'content', 'page' ); ?>
				<?php comments_template( '', true ); ?>
				<?php $sidebar = get_post_meta($post->ID, "sidebar", true);
	echo $sidebar; ?>
			<?php endwhile; // end of the loop.
			?>

		</div><!-- #content -->
	</div><!-- #text-area -->
	
	
	
	
	
		<?php if ( is_active_sidebar( 'sidebar-2' ) ) : ?>
		<div id="right-sidebar" class="widget-area" role="complementary">
			<?php dynamic_sidebar( 'sidebar-2' ); ?>
		</div><!-- #secondary -->
		<?php endif; ?>
		
	
		
		
		
	

	
	<div class="clear"></div>
</div>
<?php
//get_sidebar();
?>
<?php get_footer(); ?>

ACC SHELL 2018