/**
  * Add meta boxes used to capture pieces of information.
  *
  * @param string $post_type
  */
 public function add_meta_boxes($post_type)
 {
     if (!in_array($post_type, wsuwp_uc_get_object_type_slugs(), true)) {
         return;
     }
     if (wsuwp_uc_get_object_type_slug('people') === $post_type) {
         add_meta_box('wsuwp_uc_person_info', 'Information', array($this, 'display_person_information_meta_box'), null, 'normal', 'default');
     }
     if (wsuwp_uc_get_object_type_slug('project') === $post_type) {
         add_meta_box('wsuwp_uc_project_info', 'Information', array($this, 'display_project_information_meta_box'), null, 'normal', 'default');
     }
 }
// If a featured image is assigned to the post, display as a background image.
if (spine_has_background_image()) {
    $background_image_src = spine_get_background_image_src();
    ?>
<style> html { background-image: url('<?php 
    echo esc_url($background_image_src);
    ?>
'); }</style><?php 
}
?>

<main>

<?php 
get_template_part('parts/headers');
if (function_exists('wsuwp_uc_get_object_type_slugs') && in_array(get_post_type(), wsuwp_uc_get_object_type_slugs())) {
    if ('wsuwp_uc_person' === get_post_type()) {
        get_template_part('parts/single-layout', 'wsuwp_uc_person');
    } else {
        get_template_part('parts/single-layout', 'university-center');
    }
} else {
    if (spine_has_featured_image()) {
        $featured_image_src = spine_get_featured_image_src();
        ?>
<figure class="featured-image" style="background-image: url('<?php 
        echo esc_url($featured_image_src);
        ?>
');"><?php 
        spine_the_featured_image();
        ?>