Skip to content

Instantly share code, notes, and snippets.

@bryanblake
Forked from bastianallgeier/projects.php
Created July 31, 2012 23:03
Show Gist options
  • Save bryanblake/3221534 to your computer and use it in GitHub Desktop.
Save bryanblake/3221534 to your computer and use it in GitHub Desktop.
<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