-
-
Save bryanblake/3221534 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
<ul class="projects"> | |
<?php foreach($page->children()->visible()->shuffle() as $project): ?> | |
<?php $image = $project->images()->first() ?> | |
<li> | |
<a href="<?php echo $project->url() ?>"><img src="<?php echo $image->url() ?>" /></a> | |
</li> | |
<?php endforeach ?> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment