I’ve got a page with several images, namely davlstudio.com/home/coolhouse-bouw-update. The images on this page appear in order of their filename:
<? if($page->hasImages()):
foreach ($page->images() as $image): ?>
<a href="<?= $image->url(); ?>" data-caption="<?= $image->alt()->html(); ?>" class="article-image-link">
<figure class="article-image">
<?= $image->thumb(array('width' => 600)); ?>
</figure>
</a>
<?php endforeach; ?>
However I applied manual sorting to the images: screenshot.
So why does Coolhouse_update_6.jpg not appear first on the page?