<ul class="cols_<?= $this->perRow ?>" itemscope itemtype="http://schema.org/ImageGallery">
  <?php $count = 0; foreach ($this->body as $class => $row): ?>
	<?php foreach ($row as $col): ?>
	  <?php if ($count == 0): ?>		
		<?php if ($col->addImage): ?>
		  <li class="<?= $class ?> <?= $col->class ?>">
			<figure class="image_container"<?php if ($col->margin): ?> style="<?= $col->margin ?>"<?php endif; ?>>
			  <?php if ($col->href): ?>
				<a href="<?= $col->href ?>"<?= $col->attributes ?> title="<?= $this->headline ?>" alt="<?= $col->alt ?>"<?php $this->insert('picture_default', $col->picture); ?></a>
			  <?php endif; ?>
			</figure>
		  </li>
		<?php endif; ?>
	  <?php else: ?>
		<?php if ($col->addImage): ?>
		  <li class="<?= $class ?> <?= $col->class ?>" style="display:none;">
			<figure class="image_container"<?php if ($col->margin): ?> style="<?= $col->margin ?>"<?php endif; ?>>
			  <?php if ($col->href): ?>
				<a href="<?= $col->href ?>"<?= $col->attributes ?><?php if ($col->linkTitle): ?> title="<?= $col->linkTitle ?>" alt="<?= $col->alt ?>"<?php endif; ?>><?php $this->insert('picture_default', $col->picture); ?></a>
			  <?php endif; ?>
			</figure>
		  </li>
		<?php endif; ?>
	  <?php endif; ?>
	<?php $count++; endforeach; ?>
  <?php endforeach; ?>
</ul>
