I added this to the head.php
<div id="main">
<?php if ( is_front_page() ) {
get_template_part( 'banner', 'home' );
} ?>
And this to the banner-home.php
<?php
$args = array(
'post_type' => 'slides',
'orderby' => 'menu_order',
'posts_per_page' => -1
);
$slides = new WP_Query( $args );
if ( $slides->have_posts() ) : ?>
<div class="flexslider">
<ul class="slides">
<?php while ( $slides->have_posts() ) : $slides->the_post(); ?>
<li>
<?php the_post_thumbnail( 'slides' ); ?>
</li>
<?php endwhile; ?>
</ul>
</div>
<?php endif; ?>