Skip to content

Instantly share code, notes, and snippets.

@griffiths
Created May 11, 2017 19:59
Show Gist options
  • Save griffiths/0b09bec3974ead68ed749f5b7dc31600 to your computer and use it in GitHub Desktop.
Save griffiths/0b09bec3974ead68ed749f5b7dc31600 to your computer and use it in GitHub Desktop.
<?php foreach($page->children()->sortBy('alphabetize', 'asc') as $subpage): ?>
<a href="<?php echo $subpage->url(); ?>">
<div class="worktile">
<img src="<?php
if ( !$subpage->featuredimage()->empty() ) {
$img = $subpage->featuredimage()->toFile();
echo $img->resize(600)->url();
} else {
echo $subpage->images()->sortBy('sort', 'asc')->first()->resize(600)->url();
}
?>">
<div class="caption">
<?php echo $subpage->name()->html(); ?><br>
<em><?php echo $subpage->title()->html(); ?></em>
</div>
</div>
</a>
<?php endforeach; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment