initfest/page.php

27 lines
617 B
PHP
Raw Normal View History

2014-10-07 14:52:34 +03:00
<?php
get_header();
if ( $pagename == 'about' ||
$pagename == 'ideas-and-recommendations' ||
$pagename == 'team' ||
$pagename == 'history' ) {
wp_nav_menu( array( 'theme_location' => 'subnav-menu', 'container_class' => 'content subnav cf' ) );
echo '<div class="separator"></div>';
}
?>
<section class="content grid">
<div class="col-left">
<h1><?php the_title(); ?></h1>
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
the_content();
endwhile;
endif;
?>
</div>
<?php get_sidebar(); ?>
2014-09-30 12:44:55 +03:00
</section>
2014-10-07 14:52:34 +03:00
<?php get_footer(); ?>