Skip to content

Commit

Permalink
Adding resource
Browse files Browse the repository at this point in the history
  • Loading branch information
weaverryan committed Aug 17, 2014
1 parent 68f882f commit 205c182
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions resources/episode3/show.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<h1>Meet <?php echo $pet['name']; ?></h1>

<div class="container">
<div class="row">
<div class="col-xs-3 pet-list-item">
<img src="/images/<?php echo $pet['image'] ?>" class="pull-left img-rounded" />
</div>
<div class="col-xs-6">
<p>
<?php echo $pet['bio']; ?>
</p>

<table class="table">
<tbody>
<tr>
<th>Breed</th>
<td></td>
</tr>
<tr>
<th>Age</th>
<td></td>
</tr>
<tr>
<th>Weight</th>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>

0 comments on commit 205c182

Please sign in to comment.