Created
October 13, 2015 14:59
-
-
Save bastianallgeier/c8d8bbf77f0f2dc3c017 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
| <?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