<?php

/*
 * Archive Video Programme
 *
 * @package far_loop
 */

get_header();?>

<div class="u_pt-3 u_pt-md-6">
	<div class="l_container u_mv-5">

		<div class="page-title u_mb-3 u_mb-md-4">
        	<h1 class="page-title__apex-title u_mb-0p5"><?php _e( 'LOOP Videocloop: all programmes', 'far_loop' );?></h1>
        </div>

		<?php

		share_module();

		if ( have_posts() ) :

			while ( have_posts() ) : the_post();

				get_template_part( 'template-parts/content-video-programme' );

			endwhile;

		endif;

		pagination_module(); ?>

    </div>
</div>

<?php get_footer();
