-
-
Save bastianallgeier/1985569 to your computer and use it in GitHub Desktop.
Show Images
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 $articles = $pages->find('blog')->children()->visible()->flip()->limit(3); ?> | |
<div class="grid"> | |
<div class="row"> | |
<?php $n=0; foreach($articles as $article): ?> | |
<div class="slot-<?php echo $n . '-' . ($n+1); ?>"> | |
<div class="center"> | |
<a href="<?php echo $article->url() ?>"><?php echo thumb($article->images()->find('thumb.png'), array('width' => 400, 'height' => 300)) ?></a> | |
</div> | |
</div> | |
<?php $n=$n+2; endforeach; ?> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment