Skip to content

Instantly share code, notes, and snippets.

@JayGreentree
Last active September 4, 2020 04:15
Show Gist options
  • Save JayGreentree/3220a8fdebfb19527279b0f69636dc36 to your computer and use it in GitHub Desktop.
Save JayGreentree/3220a8fdebfb19527279b0f69636dc36 to your computer and use it in GitHub Desktop.
<?php foreach($page->children() as $campus): ?>
<div class="pd-xs"><a href="#"><img class="img-responsive img-full-width" src="<?= $campus->img->url; ?>" style="width:343; height:156;" /></a>
<h3><?= $campus->title; ?></h3>
<p class="campus-times"><?php echo $page->service_times;?></p>
<ul class="fa-ul">
<li><?php echo $page->street_adress;?></li>
<li><?php echo $page->phone_number;?></li>
</ul>
<div class='mg-t-sm2'><a href="<?php echo $page->google_maps;?>" target="_blank" class='btn btn-default btn-left '>
<i class='icon-right-4 icon-fw'></i> Get Directions</a></div></div>
</div>
<?php endforeach; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment