Advertisement
Guest User

Untitled

a guest
Aug 28th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <div class="column <?= $data->width() ?>">
  2.  
  3. <?php if ($data->picture()->isNotEmpty()): ?>
  4. <figure class="image">
  5. <?php $p = $data->project()->toPage(); ?>
  6. <a href="<?= $p? $p->url():'' ?>">
  7. <img src="<?= $page->image($data->picture())->url() ?>" alt=""></a>
  8. <figcaption class="has-text-left">
  9. <a href="<?= $p->url() ?>">
  10. <h2 class=""><?= $p->title()->html() ?></h2>
  11. </a>
  12. <p><?= $p->place() ?>, <?= $p->year() ?>, <?= $p->category() ?></p>
  13. </figcaption>
  14. </figure>
  15. <?php endif ?>
  16.  
  17. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement