Created
May 11, 2017 19:59
-
-
Save griffiths/0b09bec3974ead68ed749f5b7dc31600 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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