File: /home/wwwprimemarka/public_html/wp-content/themes/Zephyr/framework/templates/forum.php
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' );
/**
* The template for displaying all single posts and attachments
*/
$us_layout = US_Layout::instance();
$us_layout->sidebar_pos = us_get_option( 'forum_sidebar', 'none' );
get_header();
us_load_template( 'templates/titlebar' );
$default_forum_sidebar_id = us_get_option( 'forum_sidebar_id', 'default_sidebar' );
?>
<div class="l-main">
<div class="l-main-h i-cf">
<main class="l-content" itemprop="mainContentOfPage">
<section class="l-section for_forum">
<div class="l-section-h i-cf">
<?php do_action( 'us_before_single' ) ?>
<?php
while ( have_posts() ) {
the_post();
the_content();
}
?>
<?php do_action( 'us_after_single' ) ?>
</div>
</section>
</main>
<?php if ( $us_layout->sidebar_pos == 'left' OR $us_layout->sidebar_pos == 'right' ): ?>
<aside class="l-sidebar at_<?php echo $us_layout->sidebar_pos . ' ' . us_dynamic_sidebar_id( $default_forum_sidebar_id ); ?>" itemscope="itemscope" itemtype="https://schema.org/WPSideBar">
<?php us_dynamic_sidebar( $default_forum_sidebar_id ); ?>
</aside>
<?php endif; ?>
</div>
</div>
<?php get_footer(); ?>