<?php

/*
 * Template for Collaborators Profile Type
 *
 * @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">Videocloop: all collaborators</h1>
		</div>

		<?php share_module();?>

		<?php if ( have_posts() ) : ?>

			<div class="grid u_mh-min1 u_mb-3">

		<?php while ( have_posts() ) : the_post();

			get_template_part( 'template-parts/content-profile' );

		endwhile; ?>

			</div>

		<?php endif; ?>


		<?php pagination_module();?>
    </div>
</div>

<?php get_footer();
