<?php foreach ($this->body as $class=>$row): ?> <?php foreach ($row as $col): ?> <?php if ($col->addImage): ?> <figure class="image_container"> <?php if ($col->href): ?> <a href="<?= $col->href ?>"<?= $col->attributes ?> title="<?= $col->alt ?>"><?php $this->insert('picture_default', $col->picture); ?></a> <?php else: ?> <?php $this->insert('picture_default', $col->picture); ?> <?php endif; ?> <?php if ($col->caption): ?> <figcaption class="caption"><?= $col->caption ?></figcaption> <?php endif; ?> </figure> <?php endif; ?> <?php endforeach; ?> <?php endforeach; ?>