echo ws_ifdef_show($blurby);
    ?>
</h2>
									</div>
									
								</div>
								
								<div class="project-tile-info">

									<h3 class="centered"><?php 
    echo ws_ifdef_show($title);
    ?>
</h3>
									<h4 class="centered"><?php 
    echo ws_split_array_by_key(get_field('project_scope_tags'), ', ', function ($cb_tag) {
        return $cb_tag['scope_tag']->name;
    });
    ?>
</h4>
								</div>
								
							</a>
											
						</article>
			
			<?php 
    $i++;
}
?>
			
			</div>
	<?php 
}
$sidebar_accumulator .= "</ul>";
// end the sidebar, and
echo $sidebar_accumulator;
?>

	<?php 
if ($slideshow = get_field('project_slideshow')) {
    ?>

	<section id="project-slideshow" class="project-slideshow block crop bg-light">

	<?php 
    echo ws_split_array_by_key($slideshow, "", function ($cb_img) {
        return '<img type="' . $cb_img['mime_type'] . '" src="' . $cb_img['sizes']['full'] . '" />';
    });
    ?>

	</section>

	<?php 
}
?>

	
</div>	

<?php 
get_footer();