single-sfwd-courses.php 1.99 KB
<?php
/*
 * 
 */


get_header();
$container = get_theme_mod( 'understrap_container_type' );

if ( is_front_page() ) {
	get_template_part( 'global-templates/hero' );
}

$wrapper_id = 'full-width-page-wrapper';
$id = get_the_id();
?>
 <div class="hero-container header-section blur-image" data-src="<?php echo the_post_thumbnail_url(); ?>" style="--med-image: url(<?php echo the_post_thumbnail_url('medium'); ?>);">
    <div class="full-image">
        <?php $hero_content = apply_filters('the_content', get_post_meta(get_the_id(), 'hero_content', true));
		if (!empty($hero_content)) {?>
				<div class="container">
				<div class="hero-content row">				
						<div class="col align-self-center">
							<?php echo $hero_content; ?>
						</div>
					</div>
				</div>
		<?php } ?>
    </div>
</div>
<div class="wrapper" id="<?php echo $wrapper_id; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- ok. ?>">

	<div class="<?php echo esc_attr( $container ); ?>" id="content">

		<div class="row">

			<div class="col-md-12 content-area" id="primary">

				<main class="site-main" id="main" role="main">

					<?php
					while ( have_posts() ) {
						the_post();
						get_template_part( 'loop-templates/content', 'course' );

					}?>

	

                  <?php $call_out_block = get_field('call_out_block'); 
                    if($call_out_block['text_content'] !=""){ ?>
                        <div class='call-out-block'>
                            <div class='content'>
                                <?= $call_out_block['text_content']; ?>
                                <a href=" <?=  $call_out_block['button_url']; ?>" >  <?=  $call_out_block['button_text']; ?> </a>
                            </div>
                        </div>
                    <?php } ?>
                </main>

			</div><!-- #primary -->

		</div><!-- .row -->

	</div><!-- #content -->

</div><!-- #<?php echo $wrapper_id; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- ok. ?> -->

<?php
get_footer();