Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. IN HOME TEMPLATE:
  2.  
  3. <div class="columns is-multiline showcase">
  4. <?php foreach($page->showcase()->toStructure() as $entry): ?>
  5. <?php snippet('sections/' . $entry->_fieldset(), array('data' => $entry)) ?>
  6. <?php endforeach ?>
  7. </div>
  8.  
  9. CODE FROM THE SNIPPET USED ABOVE:
  10.  
  11. <div class="column <?= $data->width() ?>">
  12.  
  13. <?php if ($data->picture()->isNotEmpty()): ?>
  14. <figure class="image">
  15. <a href="<?= $data->project()->title() ?>">
  16. <img src="<?= $page->image($data->picture())->url() ?>" alt=""></a>
  17. <figcaption class="has-text-left">
  18. <a href="http://wwww.google.com">
  19. <h2 class=""><?= $data->project()->title()->html() ?></h2>
  20. </a>
  21. <p> <?= $data->project()->city() ?> </p>
  22. </figcaption>
  23. </figure>
  24. <?php endif ?>
  25.  
  26. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement