<?php /** * Template Name: Page (Default) * Description: Page template with Sidebar on the left side. * */ get_header(); ?> <!-- Main Container --> <main id="main-container"> <div class="content"> <h2 class="h6 fw-medium fw-medium text-muted mb-0"> Welcome <a class="fw-semibold" href="be_pages_generic_profile.html">John</a>, everything looks great. </h2> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <?php the_content() ?> <?php endwhile; else : echo '<p>There are no posts!</p>'; endif; ?> </div> <!-- END Page Content --> </main> <!-- END Main Container --> <?php get_footer();