Last active
June 21, 2017 14:59
-
-
Save bastianallgeier/2420685 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()->fitWidth(200) ?> | |
<li> | |
<a href="<?php echo $project->url() ?>"><img src="<?php echo $image->url() ?>" width="<?php echo $image->width() ?>" height="<?php echo $image->height() ?>" /></a> | |
</li> | |
<?php endforeach ?> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment