<?php /* Template Name: Stockists */ ?>
<?php get_header(); ?>
<div class="content">
<div class="content-title"><?php the_title(); ?></div>
<div class="content-inner sections stockists-sections clearfix">
<div class="content-part content-left">
<div class="content-subtitle primary-subtitle">Europe</div>
<?php if (have_rows('stockists-adress-europe')): ?>
<?php while (have_rows('stockists-adress-europe')) : the_row(); ?>
<div class="content-block">
<div class="content-date"><?php the_sub_field('stockists-country-europe'); ?></div>
<div class="content-text"><?php the_sub_field('stockists-shop-europe'); ?></div>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
<div class="content-part content-right">
<div class="content-subtitle primary-subtitle">Asia</div>
<?php if (have_rows('stockists-adress-asia')): ?>
<?php while (have_rows('stockists-adress-asia')) : the_row(); ?>
<div class="content-block">
<div class="content-date"><?php the_sub_field('stockists-country-asia'); ?></div>
<div class="content-text"><?php the_sub_field('stockists-shop-asia'); ?></div>
</div>
<?php endwhile; ?>
<?php endif; ?>
<div class="content-subtitle secondary-subtitle">North America</div>
<?php if (have_rows('stockists-adress-north-america')): ?>
<?php while (have_rows('stockists-adress-north-america')) : the_row(); ?>
<div class="content-block">
<div class="content-date"><?php the_sub_field('stockists-country-north-america'); ?></div>
<div class="content-text"><?php the_sub_field('stockists-shop-north-america'); ?></div>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
</div>
</div>
<?php get_footer(); ?>