Created
November 12, 2014 01:24
-
-
Save chintanparikh/99aa3eccf2f2bf43d8db 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 cards"> | |
<div ng-hide="videos.length">No videos!</div> | |
<a ng-href="{{video.video_url}}" class="col-md-4 card-wrapper" ng-repeat="video in videos" ng-show="videos"> | |
<div class="card" style="background: url('{{video.thumbnail}}') center;"> | |
<div class="info-wrapper"> | |
<span class="info"> | |
{{video.team}} | |
</span> | |
<span class="info event"> | |
{{video.event}} {{video.season}} | |
</span> | |
</div> | |
</div> | |
</a> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment