<?php
/**
 * The default template for displaying content
 *
 * Used for both singular and index.
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package WordPress
 * @subpackage Twenty_Twenty
 * @since Twenty Twenty 1.0
 */
get_header();
?> 
<section class="programs">
  <div class="container">


            <div class="program-content-top">
                <h2 class="about-inner-main  wow zoomIn">Programs</h2>
                <?php
if ( function_exists( 'yoast_breadcrumb' ) ) {
yoast_breadcrumb( '<p id="breadcrumbs" class="text-center text-white  wow zoomIn">','</p>' );
}
?>
            </div>

    



    
  </div>
</section>
 
<section class="program-details">
    <div class="container">
        
 <?php the_content() ?> 

      
  </div>
</section>
  

	 
	<?php

	if ( is_single() ) {

		get_template_part( 'template-parts/navigation' );

	}

	/*
	 * Output comments wrapper if it's a post, or if comments are open,
	 * or if there's a comment number – and check for password.
	 */
	if ( ( is_single() || is_page() ) && ( comments_open() || get_comments_number() ) && ! post_password_required() ) {
		?>

		<div class="comments-wrapper section-inner">

			<?php comments_template(); ?>

		</div><!-- .comments-wrapper -->

		<?php
	}
	
	get_footer();

	?>
 
