<?php get_header(); ?>

    <section id="main" class="default">
        <div id="page" class="row">
            <div id="content" class="site-content default-page col-md-12" role="main">
                <?php /* The loop */ ?>
                <?php while ( have_posts() ): the_post(); ?>

                    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

                        <h1 class="entry-title"><?php the_title(); ?></h1>

                        <?php if ( has_post_thumbnail() && ! post_password_required() ) : ?>
                        <div class="entry-thumbnail">
                            <?php the_post_thumbnail(); ?>
                        </div>
                        <?php endif; ?>

                        <div class="entry-content">
                            <?php the_content(); ?>
                            <?php wp_link_pages(); ?>
                        </div>

                    </article>

                    <?php // comment_template(); ?>

                <?php endwhile; ?>
            </div> <!-- #content -->
        </div> <!--/#page-->
    </section> <!-- #main -->

    </div><!-- .col-md-8 -->
    <div id="sidebar" class="col-md-4 sidebar-right" role="complementary">
        <?php get_template_part( 'my-profile'); ?>
        <div class="sidebar-inner">
            <aside class="widget-area">
                <?php dynamic_sidebar( 'sidebar' ); ?>
            </aside>
        </div>
    </div> <!-- /#sidebar -->


<?php get_footer();