template-info.php 1.01 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?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 -->
15
                    <div class="span6 full cover-bg" style="background-image: url(<?= esc_url(the_post_thumbnail_url('full')); ?>); height: calc(100vh);"></div>
16 17
                    <div class="span6 full full-screen-height exposition-block">
                        <?= get_template_part('template', 'menu'); ?>
John Punzalan's avatar
John Punzalan committed
18
                        <div class="vertical-center info-block">
19 20 21 22 23 24 25 26 27 28 29
                            <?= the_content() ?>
                        </div>
                    </div>
                </section>
            </main>
        </div>
    </div>

<? endwhile; ?>
<?php endif; ?>
<?php get_footer(); // Footer ?>