hardpixel/marv

View on GitHub
layouts/theme/templates/single.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php get_header(); ?>

    <div class="content-wrap">
        <div class="content content-area">
            <?php while ( have_posts() ) : the_post(); ?>

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

                <?php
                    if ( comments_open() || '0' != get_comments_number() ) :
                        comments_template();
                    endif;
                ?>

            <?php endwhile; ?>
        </div>

        <div class="site-sidebar widget-area">

            <?php get_sidebar(); ?>

        </div>
    </div>


<?php get_footer(); ?>