summaryrefslogtreecommitdiffstats
path: root/views/photos/index.html.php
blob: 5d10867ce74b886341acb5b73df65cbcf76f7db0 (plain)
1
2
3
4
5
6
7
<?php if (count($photos) == 0): ?>
<?= $this->html->link("Add a photo","photos::add"); ?>
<?php else: ?>
<?php foreach($photos as $photo): ?>
	<?=$this->html->image("/photos/view/{$photo->_id}.jpg"); ?>
<?php endforeach; ?>
<?php endif; ?>