Files
lichterei-web/site/snippets/gallery.php
Bastian Allgeier 01277f79f2 first version
2019-01-13 23:17:34 +01:00

10 lines
234 B
PHP
Executable File

<section class="gallery">
<?php foreach ($gallery->images() as $image): ?>
<figure>
<a href="<?= $image->link()->or($image->url()) ?>">
<?= $image->crop(600, 800) ?>
</a>
</figure>
<?php endforeach ?>
</section>