
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php get_header(); ?>

<div class="vw-content-area clearfix <?php presso_the_sidebar_position_class(); ?>">
	<div class="container">
		<div class="row">

			<main class="vw-content-main" role="main" <?php presso_itemprop( "mainContentOfPage" ); ?>>

				<?php if ( have_posts() ) : ?>

					<?php do_action( 'presso_action_before_bbpress_page' ); ?>

					<?php while ( have_posts() ) : the_post(); ?>

						<article <?php post_class( 'vw-main-post' ); ?>>
						
							<div class="vw-post-content clearfix" <?php presso_itemprop( 'articleBody' ); ?>><?php the_content(); ?></div>

						</article><!-- #post-## -->

					<?php endwhile; ?>

					<?php do_action( 'presso_action_after_bbpress_page' ); ?>

				<?php endif; ?>

			</main>

			<?php if ( presso_has_sidebar() ) get_sidebar(); ?>

		</div>
	</div>
</div>

<?php get_footer(); ?>