<?php /* * Template Name: Info Template * */ ?> <?php get_header(); // Header ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div id="content"> <div id="inner-content"> <main id="main" role="main" itemscope itemprop="mainContentOfPage" itemtype="http://schema.org/Blog"> <section class="row-fluid"> <!-- Image Left Block -->
<div class="span6 full cover-bg" style="background-image: url(<?= esc_url(the_post_thumbnail_url('full')); ?>); height: calc(100vh);"></div>
<div class="span6 full full-screen-height exposition-block"> <?= get_template_part('template', 'menu'); ?>
<div class="vertical-center info-block">
<?= the_content() ?> </div> </div> </section> </main> </div> </div> <? endwhile; ?> <?php endif; ?> <?php get_footer(); // Footer ?>