<?php

/*
 * Template name: Contributors
 *
 * @package far_loop
 *
 */

get_header();

$sections = get_field('contributors'); ?>

<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 the_title();?></h1>
		</div>
		
		<?php 
		
		if ( !empty( $sections ) ) :
			
		foreach ( $sections as $section ) : ?>
		
		<div class="u_mb-6">
			<h3 class="section-heading delta u_mb-1p5"><span class="u_text-underline"><?php echo $section['section_title'];?></span></h3>
				
				<?php if ( !empty( $section['partners'] ) ) : 
					
				$classes = $section['acf_fc_layout'] == 'medium_grid' ? 'u_ph-0p5 col--xxs--one--half col--xs--one--third col--tb--one--quarter col--md--one--sixth' : 'u_ph-0p5 col--xs--one--half col--tb--one--third col--md--one--quarter'; ?>
				
				<div class="grid u_mh-min0p5">
					
					<?php
					
					foreach ( $section['partners'] as $partner ) :
					
						echo '<div class="' . $classes . '">';
						
						if ( !empty( $partner['link'] ) )
							echo '<a href="' . $partner['link'] . '" title="' . $partner['name'] . '" target="_blank">';
						
						echo '<img src="' . $partner['logo']['url'] . '" alt="' . $partner['name'] . '">';
						
						if ( !empty( $partner['link'] ) )
							echo '</a>';
							
						echo '</div>';
					
					endforeach; ?>
					
				</div>
				
				<?php endif;?>
				
		</div>
		
		<?php
		
		endforeach;
		
		endif;?>
		
	</div>
</div>
  
<?php get_footer();
