Skip to content

Instantly share code, notes, and snippets.

@bastianallgeier
Created October 13, 2015 14:59
Show Gist options
  • Select an option

  • Save bastianallgeier/c8d8bbf77f0f2dc3c017 to your computer and use it in GitHub Desktop.

Select an option

Save bastianallgeier/c8d8bbf77f0f2dc3c017 to your computer and use it in GitHub Desktop.
<?php foreach($articles as $article): ?>
<article>
<a href="<?php echo $article->url() ?>">
<h1><?php echo $article->title()->html() ?></h1>
<?php if($image = $article->image('cover.jpg')): ?>
<figure>
<img src="<?php echo $image->url() ?>" alt="">
</figure>
<?php endif ?>
</a>
</article>
<?php endforeach ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment