I'm using infinite scroll on one of my pages, combined with a foreach-loop. My -relevant- code:
<div id="container" class="infinite-scroll span12">
<?php foreach ($items as $item): ?>
<div class="element">
<?php echo $this->Html->image($item); ?>
</div>
<?php endforeach; ?>
</div>
Scrolling further down loads the infinite-scroll plugin. The #container gets updated.
I'd now like to display one image only on the beginning of the first page.
Any idea how I could implement this?
Thanks in advance!
$items[0]. – moonwave99 Feb 4 at 14:50