Last active
January 7, 2016 05:53
-
-
Save ijharulislam/82c684a67f9efe53e2ea 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
<div class="row"> | |
<div class="col-md-4" ng-repeat="event in events.events"> | |
<div class="well"> | |
<div class="fb-profile"> | |
<img align="left" class="fb-image-lg" src="http://lorempixel.com/850/280/nightlife/5/" alt="Profile image example"/> | |
<div class="fb-profile-text" > | |
<h3> <a ng-click='redirect("/1971/events/event-details/" + event.id)'><strong>{[{event.event}]} </strong></a></h3> | |
<p class="help-block"> | |
Start Date : {[{event.start_date|date:'MMMM dd, yyyy'}]} | |
</p> | |
</div> | |
</div> | |
<div style="min-height:150px;"> | |
<p>{[{event.details| limitTo:300}]} ...</p> | |
</div> | |
<a ng-click='redirect("/1971/events/event-details/" + event.id)'><button class="btn btn-default btn-lg btn-block" type="submit"> | |
View More</button></a> | |
</div> | |
</div> | |
</div> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment