Created
December 9, 2016 13:41
-
-
Save c-jacquin/92a4db7d59f2db57a119d88850d69de7 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
| .album{ | |
| text-align: center; | |
| background: #333; | |
| padding: 10px 20px; | |
| border:#666 1px solid; | |
| } | |
| .album-thumb{ | |
| width:100%; | |
| } | |
| .album-name { | |
| height: 80px; | |
| } |
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="col-md-3"> | |
| <div class="well album"> | |
| <div *ngIf="album.images.length > 0"> | |
| <img class="album-thumb img-thumbnail" src="{{album.images[0].url}}"> | |
| <h4 class="album-name">{{album.name}}</h4> | |
| <a class="btn btn-default btn-block" [routerLink]="['/album/', album.id]">Album Details</a> | |
| </div> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment