<?php 
    get_template_part('content', 'page');
    ?>

                    <?php 
    /**
     * Seriously I never used comments on a page, what for?
     */
    //comments_template( '', true );
    ?>

                <?php 
}
// end of the loop.
?>

            </div>
        </div><!-- /#main -->

        <aside id="side-nav" class="two columns pull-ten" role="complementary">
            <?php 
if (function_exists('required_side_nav')) {
    required_side_nav();
}
?>
        </aside><!-- /#sidebar -->

    </div><!-- End Content row -->

<?php 
get_footer();
    get_template_part('content', 'page');
    ?>

                    <?php 
    /**
     * Seriously I never used comments on a page, what for?
     */
    //comments_template( '', true );
    ?>

                <?php 
}
// end of the loop.
?>

            </div>
        </section><!-- /#main -->

        <section id="sidebar" role="complementary">
            <?php 
if (function_exists('required_side_nav')) {
    $args = array('before' => '<ul class="tabs vertical">', 'after' => '</ul>');
    required_side_nav($args);
}
?>
        </section><!-- /#sidebar -->

    </div><!-- End Content row -->

<?php 
get_footer();