Last active
September 4, 2020 04:15
-
-
Save JayGreentree/3220a8fdebfb19527279b0f69636dc36 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($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