<ul class="layout_pagelist">
<?php foreach ($this->items as $item): ?>
<li class="<?php echo $item['class']; ?>">

<?php if ($item['picture']): ?>
    <figure class="image_container">

        <?php if ($item['href']): ?><a href="<?= $item['href'] ?>"<?php if ($item['title']): ?> title="<?= $item['title'] ?>"<?php endif; ?><?= $this->attributes ?>><?php endif; ?>

            <?php $this->insert('picture_default', $item['picture']->picture); ?>

            <?php if ($item['href']): ?></a><?php endif; ?>

    </figure>
<?php endif; ?>

<?php if ($item['headline']): ?>

<h2><?php echo $item['headline']; ?></h2>
<?php endif; ?>

<?php echo $item['text']; ?> <a href="<?php echo $item['href']; ?>" title="<?php echo $item['readmore']; ?>" class="more handwritten-small"><?php echo $item['more']; ?> <span class="invisible"><?php echo $item['more']; ?></span></a>
</li>
<?php endforeach; ?>
</ul>