Last active
August 29, 2015 14:22
-
-
Save pankajpatel/518fef2891965dc9772c to your computer and use it in GitHub Desktop.
contact details template for contact store application
This file contains 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
<div class="clearfix"> | |
<div class="col-md-offset-4 col-md-4"> | |
<div class="media"> | |
<div class="media-left"> | |
<img src="http://placehold.it/90x90" width="90" class="media-object img-circle"> | |
</div> | |
<div class="media-body"> | |
<h2 class="media-heading">{{contact.name}}</h2> | |
<h4>{{contact.email}}</h4> | |
<h5>{{contact.location.city}}, {{contact.location.state}}, {{contact.location.zip}}</h5> | |
</div> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment